function enlarge(pix,width,height) {
myWin= open("","enlarged","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width="+width+",height="+height);

// open document for further output
myWin.document.open();

// create document
myWin.document.write("<html><head><title>Steven's Artworks</title></head>");
myWin.document.write("<body topmargin=0 leftmargin=0 marginheight=0 marginwidth=0>");
myWin.document.write("<a href=javascript:window.close();><img src="+pix+" width="+width+" height="+height+" border=0></a>");
myWin.document.write("</body></html>");

// close the document - (not the window!)
myWin.document.close();  
}