function copyCat(pic, description, width, height) {

    var left, top, centrex, centrey;

    centrex = screen.width / 2
    centrey = screen.height / 2

    left = centrex - (width / 2)
    top = centrey - (height / 2)
    
    faux = window.open('','newWin','dependent,resizable,top=' + top + ',left=' + left +',width=' + width + ',height=' + height);
    var fd = faux.document;
    
    fd.open();
    fd.write('<html><head><link rel="STYLESHEET" href="styles.css" type="text/css"/><title>Product Info</title></head>');
    fd.write('<body bgcolor="#FFFFFF" onLoad="window.focus()">');
    fd.write('<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">');
    fd.write('<tr><td align="center" valign="middle"><img src="' + 'images/' + pic +'"></td></tr>');
    fd.write('<tr><td>' + description + '</td></tr>');
    fd.write('</table>');
    fd.write('</body></html>');
    fd.close();

} 