// gets the cookie if it exists.function CookieMonster() {	var the_cookie = document.cookie;	var broken_cookie = the_cookie.split(":");	var the_name = broken_cookie[1];	var the_name = unescape(the_name);	new String(the_name);	var the_namer = the_name.charAt(0);	if (the_namer == "1") {		location.replace('http://www.picturehouse.com/newsletter/sorry.html');	}}function at_least_this_age(min_age, birthday){ 	var today = new Date();	var yesteryear = new Date();	yesteryear.setYear(today.getYear()-min_age);		var age = today.getTime() - birthday.getTime();	var limit = today.getTime() - yesteryear.getTime();			return (age > limit);}function age_submit(){	var birthday = new Date();	with (document.birthday)	{		birthday.setYear(parseInt(W11_YEAR_R.value, 10));		birthday.setDate(parseInt(W10_DAY_R.options[W10_DAY_R.selectedIndex].value, 10));		birthday.setMonth(parseInt(W09_MONTH_R.options[W09_MONTH_R.selectedIndex].value, 10)-1);	}	birthday.setHours(0);	birthday.setMinutes(0);	birthday.setSeconds(0); 	if (!at_least_this_age(18, birthday)) 	{ 		window.location='http://www.picturehouse.com/newsletter/sorry.html'; 		return false; 	}}