function checksideform()
{
	 document.sideform.page.value = window.location.href;
	 
	 if (!document.sideform.yourname.value) {
			alert("Name is required!");
			document.sideform.yourname.focus();
			return false;
		}
		 if(document.sideform.email.value.search(/^[^\s:@,;?-?><\\\/\(\)]+@[^\s:@,;?-?><\\\/\(\)]+\.[^\s:@,;?-?><\.\\\/\(\)]{2,}$/) == -1) {
			alert("Invalid Email format!");
			document.sideform.email.focus();
			return false;
		}		
		if (document.sideform.state.value == "Choose") {
			alert("State is required!");
			document.sideform.state.focus();
			return false;
		}
		if (document.sideform.mail.checked) {
			if (!document.sideform.address.value) {
			alert("Address is required!");
			document.sideform.address.focus();
			return false;
			}
		}
		if (document.sideform.honey.value != "") {
			alert("You are a bot!");
			return false;
		}
}

function showSideFields(){
 if (document.sideform.mail.checked){
    document.sideform.address.style.display="block";
	document.getElementById('addresstext').style.display="block";

 }
 else {document.sideform.address.style.display="none";
 document.getElementById('addresstext').style.display="none";}
}
