//redirect depending on screen resolution

function getScreen()
{
	var hiRes="redirect/index_white_hr.html";
	var midRes="redirect/index_white_mr.html";
	var loRes="redirect/index_white_lr.html";
	var screenX;
	var screenY;
	screenX=screen.width;
	screenY=screen.height;
	//alert("Your screen width is "+screenX+".\nYour screen height is "+screenY+".");

		location=midRes;

}
