function ViewPhoto(picURL,screenW,screenH,picTitle){

	var newWindow = "";

	newWindow = window.open('','newWin','toolbar=no,width=' + screenW + ',height=' + screenH + ',scrollbars=yes,resizable=no');	


	newWindow.resizeTo(screenW + 10,screenH + 60);

	newWindow.document.writeln('<html><head><title>' + picTitle + '<\/title><\/head>');
	newWindow.document.writeln('<body topmargin="0" bottommargin="0" rightmargin="0" leftmargin="0" Bgcolor="#FFFFFF">');

	newWindow.document.writeln('<a href="javascript:window.close();">');
	newWindow.document.writeln('<img src="' + picURL + '" border="0">');
	newWindow.document.writeln('</a>');

	newWindow.document.writeln('<\/body><\/html>');

	newWindow.focus();
	newWindow.document.close();
}