// Script to show large view of photos in a pop-up window

function photoViewer(photo,pW,pH) {
	//if(!(browser == "IE" && platform == "mac")) document.domain = "shelleykusnetzphotography.com";

	var w = pW + 20;
	var h = pH + 94;
	if (pW == 640)
		var dim = "hz";
	else
		var dim = "vr";
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var dimensions = 'height='+h+',width='+w+',top='+wint+',left='+winl+',resizable=yes';
	var win = window.open('','largeviewPhoto',dimensions); 
	var d = win.document; 
	d.writeln("<html>"); 
	d.writeln("<head>");
	d.writeln("<title>Image by Shelley Kusnetz Photography</title>");
	d.writeln("<style type=\"text/css\">");
	d.writeln("body {font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;color: #FFF;background-color: #233;margin:0;padding:0;}");
	d.writeln(".credit1,.credit2 {text-align: left;color: #F7F6E3;font-size:9px;}");
	d.writeln(".credit1 {padding-top:6px;}");
	d.writeln("</style>");
	d.writeln("</head>");
	d.writeln("<body onLoad=\"window.focus();window.moveTo("+winl+","+wint+");window.resizeTo("+(w+10)+","+(h+30)+");\">"); 
	d.writeln("<table cellpadding=0 cellspacing=0 border=0 width="+w+" height="+h+">");
	d.writeln("<tr><td align=\"center\" valign=\"top\" style=\"padding-top:10px;\">");
	d.writeln("<table cellpadding=0 cellspacing=0 border=0 width="+pW+">");
	d.writeln("<tr><td><img src=\"http://www.shelleykusnetzphotography.com/images/portfolio/large/"+photo+"\" width=\""+pW+"\" height=\""+pH+"\"></td></tr>");
	d.writeln("<tr><td class=\"credit1\">Copyright &copy; 2006-2007 Shelley Kusnetz Photography. All rights reserved.</td></tr>");
	d.writeln("<tr><td class=\"credit2\">This image may not be reproduced in any form without the written permission of Shelley Kusnetz Photography.</td></tr>");
	d.writeln("</table>");
	d.writeln("</td></tr>");
	d.writeln("</table>");
	d.writeln("</body>");
	d.writeln("</html>");
	d.close(); 
}