/*
DETECT SCREEN RESOLUTION
Used in statistics
*/
function detectRes() {
	var today = new Date();
	var the_cookie_date = new Date(today.getTime() + (1000 * 60 * 60));
	var the_cookie = "stats_res="+ screen.width +"x"+ screen.height;
	var the_cookie = the_cookie + ";expires=" + the_cookie_date;
	document.cookie=the_cookie;
}

