<!--
function getCookie( name ){ 

	        var nameOfCookie = name + "="; 
	        var x = 0; 
	        while ( x <= document.cookie.length ) 
	        { 
	                var y = (x+nameOfCookie.length); 
	                if ( document.cookie.substring( x, y ) == nameOfCookie ) { 
	                        if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) 
	                                endOfCookie = document.cookie.length; 
	                        return unescape( document.cookie.substring( y, endOfCookie ) ); 
	                } 
	                x = document.cookie.indexOf( " ", x ) + 1; 
	                if ( x == 0 ) 
	                        break; 
	        } 
	        return ""; 
} 

function chkPop(url2pop,pWidth,pHeight)
{

	if ( getCookie( "Notice" ) != "check" ) { 
 	     newWin = window.open(url2pop,"","width="+pWidth+", height="+pHeight+", scrollbars=no");
	  	 newWin.focus(); 
     } 
}

function chkPop1(cookname,cookval,url2pop,pWidth,pHeight)
{

	if ( getCookie( cookname ) != cookval ) { 
 	     newWin = window.open(url2pop,"","width="+pWidth+", height="+pHeight+", scrollbars=no");
	  	 newWin.focus(); 
     } 
}



function chkPop2(url2pop,pWidth,pHeight)
{
	var popX,popY;
	var popCnt = getCookie("hkrpvst");
	if (!popCnt || (popCnt && popCnt<2))
	{
		if ( getCookie( "Notice" ) != "check" ) { 
				if (document.all) {
					popX = window.screenLeft;
					popY = window.screenTop+211;
					newWin = window.open(url2pop,"","width="+pWidth+", height="+pHeight+", top="+popY+", left="+popX+", scrollbars=no");
				} else {
					popX = window.screenX+(window.outerWidth-window.innerWidth);
					popY = window.screenY+(window.outerHeight-window.innerHeight)+187;
					newWin = window.open(url2pop,"","width="+pWidth+", height="+pHeight+", screenX="+popX+", screenY="+popY+", scrollbars=no");
				}
				newWin.focus();
		}
	}
}

//-->