    <!--hide 

	//escape from frames

	function breakOut() {
		if (self != top) top.location = self.location }
 
	// 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=600,height=650,resizable,scrollbars,left=50");
		imageWindow.document.bgColor="#000000";
		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=350,height=350,resizable,scrollbars,left=320"); 
	} 


// end -->
