	/*
	Screen Size Redirect script (By Robert @ http://members.tripod.com/technological_tinker/)
	Submitted to Dynamicdrive.com to feature script in archive
	For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
	*/
	if (screen.width<=1024||screen.height<=768) //if 1024x768
	document.body.className="res1";
	
	else if ((screen.width>1024 && screen.width<=1280) || (screen.height>768 && screen.height<=960)) //if 1024x768 or 1280x1024
	document.body.className="res2";
	
	else if ((screen.width>1280 && screen.width<1600) || (screen.height>1024 && screen.height<1200)) //if 1280x1024 or 1600x1204
	document.body.className="res3";
	
	else if (screen.width>=1600||screen.height>=1200) //if 1600x1204
	document.body.className="res3";
	
	else //if all else
	document.body.className="res4";
	//alert (screen.width+"x"+screen.height)
	//-->
