// JavaScript Document
function showlayer(obj,Layer){
	var ShowTop,ShowLeft;
	ShowTop=parseInt(event.clientY)+parseInt(document.body.scrollTop)-parseInt(event.offsetY)-2;
	ShowLeft=parseInt(event.clientX)+parseInt(document.body.scrollLeft)-parseInt(event.offsetX)-2;
	if(obj.submenu=="right"){
		ShowLeft+=parseInt(obj.offsetWidth);
	}else if(obj.submenu=="bottom"){
		ShowTop+=parseInt(obj.offsetHeight);
	}else if(obj.submenu=="left"){
		ShowLeft-=parseInt(Layer.offsetWidth);
	}else if(obj.submenu=="top"){
		ShowTop-=parseInt(Layer.offsetHeight);
	}
	Layer.style.top=ShowTop;
	Layer.style.left=ShowLeft;
	Layer.style.visibility="";
}
function hiddenlayer(Layer){
	Layer.style.visibility="hidden";
}