
function getUserResolution()
{
var today = new Date();
var the_date = new Date("December 31, 2023");
var the_cookie_date = the_date.toGMTString();
var the_cookie;
 var the_cookie ="aspect=";
 var aspect="unknow";
if ( (screen.height /screen.width )== 1024/1280) var aspect = "5_4";
if ( (screen.height /screen.width )== 768/1024) var aspect = "4_3";
if ( (screen.height /screen.width )== 10/16) var aspect = "16_10";
var the_cookie = the_cookie + aspect+";expires=" + the_cookie_date;
document.cookie=the_cookie

} 

function scr_popup(sURL){

	newwindow=window.open(sURL,'name','height=360,width=480,resizeable=0,scrollbar=0');
	if (window.focus) {newwindow.focus()}
	return false;

}