function openLargeImage(largeImage,h,w){
	photoWin = window.open("", "photo","width=" + w + ",height=" + h + ",status=no,scrollbars=no,resizable=no,screenX=50,screenY=50,left=50,top=50");
	photoWin.document.write('<html><head><title>' + largeImage + '</title></head>');	
	photoWin.document.write('<body bgcolor=#000000 leftmargin=0 topmargin=0 onBlur="window.close()">');
	photoWin.document.write('<center>');
	photoWin.document.write('<img src="photos/' +  largeImage + '">');
	photoWin.document.write('</body></html>');
	photoWin.document.close();	
}