
//This function detects the user's screen resolution and set
//the Main container's size by setting the image size.
function detectResolution(){
	 if ((screen.width <= 800) && (screen.height <= 600))
		{document.write('<img src="/img/x.gif" border="0" width="775" height="1" alt="">');}
	 else
		{document.write('<img src="/img/x.gif" border="0" width="810" height="1" alt="">');}	
	}	
