<!--
	var setLayer;

	function fnClosePopupLayer(oParamName)
	{
		document.getElementById(oParamName).style.display="none"
	}

	function fnClosePeroidPopupLayer(oParamName, oParamKey)
	{
		var today = new Date() ;
		today.setDate(today.getDate() + 1) ;
		today.setHours(0);
		today.setMinutes(0);
		today.setSeconds(0);
		document.cookie = oParamKey + "=checked;expires=" + today.toGMTString() ;
		fnClosePopupLayer(oParamName);
	}

	function NowcomCheckToViewlayerPopup(oParamName, oParamKey)
	{
		if (document.cookie.indexOf(oParamKey + "=checked")== -1)
		{
			document.getElementById(oParamName).style.display = "inline";
		}
	}

	isIE=document.all;
	isNN=!document.all&&document.getElementById;
	isN4=document.layers;
	isHot=false;

	function fnInit(e)
	{
		topDog=isIE ? "BODY" : "HTML";
		whichDog=isIE ? document.all[setLayer] : document.getElementById(setLayer);
		hotDog=isIE ? event.srcElement : e.target;
		while (hotDog.id!= setLayer &&hotDog.tagName!=topDog){
			hotDog=isIE ? hotDog.parentElement : hotDog.parentNode;
		}
		if (hotDog.id== setLayer){
			offsetx=isIE ? event.clientX : e.clientX;
			offsety=isIE ? event.clientY : e.clientY;
			nowX=parseInt(whichDog.style.left);
			nowY=parseInt(whichDog.style.top);
			chkEnabled=true;
			document.onmousemove=fnChkEnabled;
		}
	}

	function fnChkEnabled(e)
	{
		if (!chkEnabled) return;
		whichDog.style.left=isIE ? nowX+event.clientX-offsetx : nowX+e.clientX-offsetx;
		whichDog.style.top=isIE ? nowY+event.clientY-offsety : nowY+e.clientY-offsety;
		return false;
	}

	function fnSetLayer(oParam)
	{
		setLayer = oParam;
	}

-->

