function openImgWin(imgName, imgWidth, imgHeight) {
	var imgURL = 'images/photos/' + imgName + '_lg.jpg';
	var imgHeight = imgHeight;
//	alert(imgURL);
//	alert(imgWidth);
//	alert(imgHeight);
	imgWin1 = window.open("","lgImg","width=" + imgWidth +", height=" + imgHeight + ", menubar=no, scrollbars=no, resizable=no");
	imgWin1.document.open();
	imgWin1.document.write('<head><title>' + imgName +'</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="font-size: 10pt; font-family: verdana; color: FFF; background-color: 000; text-align: center">');
	imgWin1.document.writeln('<img src="' + imgURL + '"></body>'  );
//	imgWin1.document.writeln('<br>' + imgURL + '<br>');
//	imgWin1.document.write('<script>alert(document.images[0].width)</script>');
//	imgWin1.document.writeln('<script>resizeTo(document.images[0].width+100, document.images[0].height+100)</script></head><body bgcolor="#000000" text="#FFFFFF" link="#FFFF00" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><br>');
	imgWin1.moveTo((0 + screen.availWidth/2 - imgWidth/2),(0 + screen.availHeight/2 - (imgHeight)/2));
//	imgWin1.document.writeln('<font color="#999900"><a href="eyes.html">Close Window</a></font>');

}

