function SetLayerLeft()
{
		var obj1=document.getElementById("Layer1");
		var obj2=document.getElementById("Layer2");
		if(obj1 !=null && obj2 != null)
		{
			var width1=115;
			var width2=165;
			if(window.screen.width>1024)
			{
				width1=window.screen.width*0.16+100;
				width2=window.screen.width*0.16+145;
			}
			obj1.style.left=width1;
			obj2.style.left=width2;
		}
}