function createNew(w,h,artist,caption,loc,img) {

  var pgtitle = "Sculpture to Wear"
  _w = window.open('','popup','width='+w+',height='+h+',resizable=yes,scrollbars=1,top=150,left=150');
  _w.document.open();
  _w.document.write('<HTML><HEAD><TITLE>'+pgtitle+'</TITLE></HEAD>\n');
  _w.document.write('<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#CC3300" ALINK="#CC3300" VLINK="#CC3300"><CENTER>\n');
  _w.document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0><TR><TD VALIGN=top WIDTH=342>\n');
  _w.document.write('<IMG SRC="../../../images/smlwin/stw_logosmall.jpg" WIDTH=342 HEIGHT=58 BORDER=0 ALIGN=bottom></TD>\n');
  _w.document.write('<TD VALIGN=top><A HREF="javascript:close();"><IMG SRC="../../../images/smlwin/closebttn.jpg" WIDTH=114 HEIGHT=58 BORDER=0 ALIGN=bottom></A>\n');
  _w.document.write('</TD></TR></TABLE><BR>\n');
  _w.document.write('<FONT SIZE="3" FACE="Arial" COLOR="#666666"><B>'+artist+'</B></FONT><BR>\n');
  _w.document.write('<FONT SIZE="-1" FACE="Arial" COLOR="#CC3300">'+caption+'</FONT><P>\n');
  _w.document.write('<IMG SRC="images/'+img+'" BORDER=1 ALIGN=bottom><BR>\n');
  _w.document.write('<IMG SRC="../../../images/smlwin/stw_footer.jpg" WIDTH=464 HEIGHT=31 ALIGN=bottom><BR>\n');
  _w.document.write('</CENTER></BODY></HTML>');
  setTimeout('_w.focus()',100)
  _w.document.close();
}
