function Lcompensate(mylyrs){
	//sposta i layers passati come argomenti della funzione,a seconda dell'offset dato.
	
	var ns = (navigator.appName == "Netscape");
	var mac = (navigator.appVersion.indexOf("Mac")!=-1)

	if (mac){
		if (ns){
				// netscape Macintosh
				//alert("netscape Macintosh");
				xoffset= -7;
				yoffset= 3;
			}else{
				// ie Macintosh
				//alert("ie Macintosh");
				xoffset= -1;
				yoffset= 0;
			}
		}else{
		if (ns){
				// netscape PC
				//alert("netscape PC");				
				xoffset= -7;
				yoffset= 4;
				}else{
				// ie pc
				//alert("ie PC");				
				xoffset= -2;
				yoffset= 4;
			}
		}
	
	
		for (var i=0; i<arguments.length; i++) {
			//alert (arguments[i]);
			if (ns){
				actlyr = document.layers[arguments[i]];
			}else{
				vrb = arguments[i]
				actlyr = document.all[arguments[i]].style;
			}
			actlyr.top = parseInt(actlyr.top) + yoffset;
			actlyr.left = parseInt(actlyr.left) + xoffset;
		//alert(i);
		} 
   	
}
