<!-- Hide script

	 function popup(strUrl, event){

		var w=470;
		var h=450;
		var x=event.screenX + 10
		var y=event.screenY + 10

		if (x > screen.width/2) { x = x-w }
		if (y > screen.height/2) { y = y-h }

		awindow = window.open(strUrl,"Noteshow","left="+x+",top="+y+",width="+w+",height="+h+",resizable=1,toolbar=0,menubar=0,status=0,scrollbars=1");

	}
	 function popuplg(strUrl, event){

		var w=590;
		var h=450;
		var x=event.screenX + 10
		var y=event.screenY + 10

		if (x > screen.width/2) { x = x-w }
		if (y > screen.height/2) { y = y-h }

		awindow = window.open(strUrl,"Noteshow","left="+x+",top="+y+",width="+w+",height="+h+",resizable=1,toolbar=0,menubar=0,status=0,scrollbars=1");

	}
	function popuphw(strUrl,h,w, event){

		var x=event.screenX + 10
		var y=event.screenY + 10

		if (x > screen.width/2) { x = x-w }
		if (y > screen.height/2) { y = y-h }

		awindow = window.open(strUrl,"Noteshow","left="+x+",top="+y+",width="+w+",height="+h+",resizable=1,toolbar=0,menubar=0,status=0,scrollbars=1");

	}
	function closeandrefresh() {
	   window.opener.location.reload(); 
       window.close(); 
	
	}
	
	// End hiding -->