function popup(URL) {
	window.open(URL,'','scrollbars=yes,resizable=yes,width=420,height=420')
}

function readCookie() {
	var the_cookie = document.cookie;
	var broken_cookie = the_cookie.split(";"); 
	var the_name = broken_cookie[0]; 
	if (the_name.indexOf("true")>=0) {
		window.location.replace("http://www.scruplesgame.com/main2.html");
		}
}
function setCookie(theURL) { 
	var the_name = "true"; 
		var get_month = new Date();
	var this_month = get_month.getMonth();
	var this_year = get_month.getFullYear();
	if (this_month == "11") {
		this_year = this_year+1;
		}
	myMonth = new Date;
var month = (this_month + 1)%12;
switch (month) {
	case 0:
	month="January";
	break;
	case 1:
	month="February";
	break;
	case 2:
	month="March";
	break;
	case 3:
	month="April";
	break;
	case 4:
	month="May";
	break;
	case 5:
	month="June";
	break;
	case 6:
	month="July";
	break;
	case 7:
	month="August";
	break;
	case 8:
	month="September";
	break;
	case 9:
	month="October";
	break;
	case 10:
	month="November";
	break;
	case 11:
	month="December";
	break;
}
	var stringDate = month + " 1, " + this_year;
	var the_date = new Date(stringDate); 
	var the_cookie_date = the_date.toGMTString();
	var the_cookie ="name="+the_name+";expires=" + the_cookie_date; 
	document.cookie=the_cookie;
	window.open(theURL,'','scrollbars=auto,width=150,height=150')
	}