/***********************************************
* Script for popping up a new window to view photos
*
***********************************************/

function NewWindow(photo, photo_height, photo_width) 
	{

	photoURL="images/"+photo+".jpg";
	 var winl = (screen.width - photo_width) / 2; 
	var wint = (screen.height - photo_height) / 2; 
	var winprops = 'height='+photo_height+',width='+photo_width+',top='+wint+',left='+winl;
	win = window.open("photo_window.htm?"+photoURL, "small", winprops); 
        win.focus();
	} 

function CloseWindow(){
if (win && win.open && !win.closed){
 win.close();
}
}
