function popUp(strURL, intWidth, intHeight, canScroll) 
{
	var scroll = (canScroll) ? 1 : 0;
	window.open(strURL,"cbeebies","toolbar=0,scrollbars=" + scroll + ",location=0,statusbar=0,menubar=0,resizable=1,width=" + intWidth + ",height=" + intHeight).focus();
}


function printWindow()
{
  window.print();
}


function validateForm(theForm)
{
  var infoEntered = true;
  
  if ((theForm.answer.value ==''))
    {
	alert("You must enter an answer to the question before submitting your entry.");
	infoEntered = false;
	}
  else if ((theForm.title.value == 'Select') || (theForm.firstName.value == '') || (theForm.surname.value == '') || (theForm.address1.value == '') || (theForm.town.value == '') || (theForm.postcode.value == '') || (theForm.email.value == '') || (theForm.childName.value == '') || (theForm.day.value =='') || (theForm.month.value =='') || (theForm.year.value =='') || (theForm.boy.checked == false && theForm.girl.checked == false))
    {
	alert("Not all required fields have been completed. Please add the required information before trying again.");
	infoEntered = false;
	}
  return infoEntered;
}


function validateOfferForm(theForm)
{
  var infoEntered = true;
  
  if ((theForm.title.value == 'Select') || (theForm.firstName.value == '') || (theForm.surname.value == '') || (theForm.address1.value == '') || (theForm.town.value == '') || (theForm.postcode.value == '') || (theForm.email.value == '') || (theForm.childName.value == '') || (theForm.day.value =='') || (theForm.month.value =='') || (theForm.year.value =='') || (theForm.boy.checked == false && theForm.girl.checked == false))
    {
	alert("Not all required fields have been completed. Please add the required information before trying again.");
	infoEntered = false;
	}
  return infoEntered;
}
