<!--
var nscreen;
nPos = new Array(4)
nPos[0]=(583)
nPos[1]=(483)
nPos[2]=(383)
nPos[3]=(283)


function showLayer(i){
		nscreen=document.body.clientWidth;
		hideAll();	
		document.all['L' + i].style.left = (nscreen - nPos[i]);
		document.all['L' + i].style.top = 49;
		document.all['L' + i].style.visibility = "visible";
		
}

function hideAll(){
		for (j = 0 ; j < 4 ; j++)
		{
		document.all['L' + j].style.visibility = "hidden";
		}
}



//-->
