function launchPhotoWindow(imageLocation)
{
	var objNewWindow;
	try {
		if (top.objNewWindow != "") { top.objNewWindow.close(); }
	}
	catch (e){}
	top.objNewWindow = window.open('photowindow.asp?img=' + imageLocation,'PhotoWindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,resizable=yes,width=600,height=600');
	top.objNewWindow.focus();
}
