<!--
function ReCalcPrices() {
document.form1.action = 'checkout-p1.asp?chg=1';
document.form1.submit();
}

function CheckOrder() {
 if (!CheckRequired())
 {	
  document.form1.submit();
  return true;
 }
 else {
  return false;
 }
}

function CheckRequired() {

if (document.form1.ChocQty.value == 0 && document.form1.CoffeeQty.value == 0 && document.form1.CreamQty.value == 0)
{
document.form1.ChocQty.focus()
alert('You have not ordered any Book Pillows.\n\n' +
'Please select which and how many book pillows you\n' +
'would like to order before moving onto the next stage.');
return true;
}

if (!document.form1.SaleReferrer.value.length)
{
document.form1.SaleReferrer.focus()
alert('You have not filled in all of the necessary details.\n\n' +
      'Please let us know how you heard about BookPillow.');
return true;
}

else 
{
return false;
}

}
//-->
