var faux = null;
var pic = new Image(); 

function copyCat(pic, picname) {
  faux = window.open('','newWin','width=640,height=680,resizable=yes,top=50,left=50,screenX=50,screenY=50');
  faux.focus()
	var fd = faux.document;
  fd.open();
  fd.write('<html><head><title>Taffety Punk Theatre Company: Photos: Damaged Goods: The New Vaudeville</title></head>');
	fd.write('<link rel="stylesheet" href="tptc.css" type="text/css">');
  fd.write('<body bgcolor="#999999" onLoad="window.focus()">');
  fd.write('<table border="0" cellpadding="10" cellspacing="0" width="100%" height="100%" align="center">');
  fd.write('<tr><td align="center" valign="middle"><img src="' + 'images/photos/damaged/' + pic + '_600' +'.jpg"><br><br><font color="#874851" face="Arial,Helvetica,sans-serif" size="2"><strong>' + picname + '</strong></font></td></tr>');
	fd.write('</table></body></html>');
  fd.close();
} 
