function position()
{
	if (navigator.appName.toUpperCase().match(/MICROSOFT INTERNET EXPLORER/) != null) var brows="IE";
	if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) var brows="NS";

	if (brows=="IE") var prozor=document.body.clientWidth;
	if (brows=="NS") var prozor=window.innerWidth;

		poc=Math.round((prozor-771)/2);
		if ((poc*2) > (prozor-771)) 
		{
			p=-1;
		}
		else
		{
			p=0;
		}

		var x=poc;
		if (x<0) x=0;
		document.getElementById("Layer1").style.left=x+56;
		document.getElementById("Layer2").style.left=x+137;
		document.getElementById("Layer3").style.left=x+414;
}