<!--
function validate()
{

if (document.playform.name.value == " ") 
{
alert("Not a valid Name");
document.playform.name.focus();
return false
}

sp=document.playform.name.value.indexOf(" ")
if (sp<0)
{
alert("Please fill first name and last name");
document.playform.name.focus();
return false
}


at=document.playform.email.value.indexOf("@")
dot=document.playform.email.value.indexOf(".")
if (at<0) 
{
alert("Not a valid e-mail");
document.playform.email.focus();
return false
}
if (dot<0) 
{
alert("Not a valid e-mail");
document.playform.email.focus();
return false
}
if (document.playform.agree.checked )
{}
else
{
alert("Please read and agree terms and conditions");
document.playform.agree.focus();   
return false
}
if (document.playform.promotion[0].checked || document.playform.promotion[1].checked)
{
return true
}
else
{
alert("Please select one of the option");
document.playform.promotion[0].focus();   
return false
}

}
//-->