function imgWin(img,x,y) {
var msgWin = window.open('','','width=' + x + ',height=' + y +'menubar=no,toolbar=no,location=no,scrollbars=no,resizable=yes,screenX=20,screenY=20,left=20,top=20');

msgWin.document.open();
msgWin.document.write("<html><head><title>Headhunters Image Viewer</title><body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0 bgcolor=black>");
msgWin.document.write("<img src='gfx/" + img + "'>");
msgWin.document.write("</body></html>");
msgWin.document.close();
}