    <!--hide 
 
	// opens the full sized image in a resizable and scrollable popup window

	var imageWindow;
	var imageName;

	function showBigImage(imageURL, imageName) {
		imageWindow = window.open(imageURL, imageName, "width=575,height=575,resizable,scrollbars,left=320");
		imageWindow.document.bgColor="black";
		imageWindow.focus();
		return false;
	}


	//opens a link in a new full-sized window

	function newwindow(url) { 
		window.open(url,'newWindow'); 
	} 


	//opens a small resizable, scrollable pop-up window

	function newwindowpop(url) { 
		window.open(url,'newWindow', "width=400,height=600,resizable,scrollbars,left=320"); 
	} 


     // end -->
