window.onload=function(){
	document.getElementById("From Url").value=window.location.href;
}
function check(){
if(document.getElementById("radio").checked==false&&document.getElementById("radio2").checked==false){alert('Please select sex!');document.getElementById("radio").focus();return false;}
if(document.getElementById("Name").value==""){alert('Name is invalid!');document.getElementById("Name").focus();return false;}
if(isEmail(document.getElementById("Email").value)==false){alert('Your Email Address is invalid!');document.getElementById("Email").focus();return false;}
if(document.getElementById("Telephone").value==""){alert('Tel is invalid!');document.getElementById("Telephone").focus();return false;}
if(document.getElementById("Interested Product").value==""){alert('Please select Interested Product!');document.getElementById("Interested Product").focus();return false;}
if(document.getElementById("Message").value==""){alert('Message is invalid!');document.getElementById("Message").focus();return false;}
}
function isEmail(str){
       var reg = /^([a-zA-Z0-9\._-])+@([a-zA-Z0-9_-])+((\.[a-zA-Z0-9_-]{2,3}){1,2})$/;
       return reg.test(str);
}
