// JavaScript Document


		 <!--
function OK()
{
	
if (document.purchase.prodselect.value == "")
      {
	alert("Please select a package");
	return false;
	}

if (document.purchase.ppeerrssoonn.value == "")
      {
	alert("Please input your name.");
	return false;
	}


var email = document.purchase.liame.value;
var email2 = document.purchase.liame2.value;

if (email != email2)
      {
	alert("Your email addresses dont match");
	return false;
	}




if (document.purchase.liame.value == "")
      {
	alert("Please input your Email address.");
	return false;
	}

 if ( document.purchase.terms.checked == false )
    {
        alert ( "Please read the terms and conditions and tick the terms and conditions box to agree" );
        return false;
    }


if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.purchase.liame.value)){


return true;


}
else{
alert("Your Email Address is Invalid");
return false;
}	
	




}
-->
