/*
	var x =0 
	var y=0 
	drag = 0 
	move = 0 
	window.document.onmousemove = mouseMove
	window.document.onmousedown = mouseDown 
	window.document.onmouseup = mouseUp 
	window.document.ondragstart = mouseStop 

	function mouseUp() { 
		move = 0 
	} 
	function mouseDown() {
		if (drag) {
			clickleft = window.event.x - parseInt(dragObj.style.left) 
			clicktop = window.event.y - parseInt(dragObj.style.top) 
			dragObj.style.zIndex += 1 
			move = 1 
		} 
	} 
	function mouseMove() { 
		if (move) { 
			dragObj.style.left = window.event.x - clickleft 
			dragObj.style.top = window.event.y - clicktop 
		} 
	} 
	function mouseStop() { 
		window.event.returnValue = false 
	} 
	function PopShow(divid) { 
		divid.filters.blendTrans.apply(); 
		divid.style.visibility = "visible"; 
		divid.filters.blendTrans.play(); 
	} 
	function PopHide(divid) { 
		divid.filters.blendTrans.apply(); 
		divid.style.visibility = "hidden"; 
		divid.filters.blendTrans.play(); 
	} 



	function notice_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 ""; 
	} 




	if ( notice_getCookie( "Notice_1" ) != "done" ) { 
		PopShow(Notice_1);
	} 


	if ( notice_getCookie( "Notice_2" ) != "done" ) { 
		PopShow(Notice_2);
	} 


*/
