<!--
function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}
function Validate_frm(frm) {
	if (frm.y.selectedIndex == 0) {
		alert("What year?");
		return false;
	} else {
		if (frm.m.selectedIndex == 0) {
			alert("What month?");
			return false;
		} else {
			if (frm.d.selectedIndex == 0) {
				alert("What day?");
				return false;
			} else {
				//alert("FORM VALID!");
				return true;
			}
		}
	}
}
//alert(readCookie("legal"));
//---------------------------------------------//
if( readCookie("bIsOldEnough") == "false" ) {
   document.location.href = "/agedecline.php";
  
}else{
  if( readCookie("bIsOldEnough") == null ) {
    if( document.location.pathname != "/agegate.php" ) 
       document.location.href = "/agegate.php";
  }
}
// -->
