//=====================================================================================================||
//                                            ****Disclaimer***                                        ||
//In using this software, you understand and agree                                                     ||       
//that this software is provided as is without warranty of any kind.                                   ||                                   //The entire risk as to the results and performance of using this software lies entirely with you,     ||
//the user. The authors do not make any warranties, either expressed or implied,                       ||                                   //including but not limited to implied warranties of merchantability                                   ||
// and fitness for a particular purpose, with respect to this software.                                ||                                                                
//                                                                                                     ||
//=====================================================================================================||

var expiration_date = new Date("January 1, 3000");
expiration_date = expiration_date.toGMTString();
function checkFields()
{	
if(document.form1.user_age.value=="")
{window.alert("ATTENTION:Please enter your age");
return (false);
}

if(document.form1.user_age.value < 18)
{self.parent.location="http://www.yahoo.com";
return (false);
}

if (isNaN(document.form1.user_age.value)) {
alert("Please enter your age")
return false
}

//The code below  sets the cookie you must change "yourdomainname" to your domain
document.cookie = "verifier=on; expires=" + expiration_date + "; domain=.orgasamsdenied.com"	
return true; 

}