function s1()
{
if (window.navigator.appName == "Netscape")
	{
		if (window.screen.width==800)
		{
			document.getElementById("Layer1").style.left=9;
			document.getElementById("Layer1").style.top=83;
		}
		if (window.screen.width==1280)
		{
			document.getElementById("Layer1").style.left=238; 
			document.getElementById("Layer1").style.top=83;
		}
		if (window.screen.width==1024)
		{
			document.getElementById("Layer1").style.left=112; 
			document.getElementById("Layer1").style.top=83;
		}
		if (window.screen.width==1152)
		{
			document.getElementById("Layer1").style.left =194;
			document.getElementById("Layer1").style.top=83;
		}
	}
if (window.navigator.appName == "Microsoft Internet Explorer")
	{
		if (window.screen.width==800)
		{			
			document.all['Layer1'].style.left=9;
			document.all['Layer1'].style.top=83;
		}
		if (window.screen.width==1024)
		{
			document.all['Layer1'].style.left=112; 
			document.all['Layer1'].style.top=83;
		}
		if (window.screen.width==1280)
		{
			document.all['Layer1'].style.left=238;
			document.all['Layer1'].style.top=83;
		}
		if (window.screen.width==1152)
		{
			document.all['Layer1'].style.left=194;
			document.all['Layer1'].style.top=83;
		}
	}
}