
	   <!--
		  function open_window(url,wide,tall) {
		  var NEW_WIN = null;
		  NEW_WIN = window.open ("", "Viewer","toolbar=no,width="+wide+",height="+tall+",screenX=100,screenY=100,top=100,left=100,directories=no,status=no,scrollbars=yes,resize=yes,menubar=no");
		  NEW_WIN.location.href = url;
	   }

	   function refresh(url){
		opener.location.href=url;
	   }

	   function refreshClose(url){
		opener.location.href=url;
		self.close();
	   }

		function pop_up(url){
		var info_win = null;
		info_win = window.open(url, "Info", "width=650, height=300, ,screenX=100,screenY=100,top=100,left=100, toolbar=yes, status=yes, scrollbars, resize=yes, menubar=no");
		info_win.focus();
		}

		function nextPage(url){
			location=url;
		}

		
	   //-->
	   