function newWin(nameImg,width,height) {
    win=open(
        "",
        "",
        'left=' + (self.screen.width - width) / 2 +
        ',top=' + (self.screen.height - height) / 2 +
        ",width="+width+"px ,height="+height+"px"
    );
    win.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table cellpadding=0 cellspacing=0 border=0><tr><td><img src="'+nameImg+'" style="cursor:hand;" onclick="window.close();" alt=""></td></tr></table></body></html>');
    win.document.close();
}

function newWinHtml(nameImg,width,height) {
    win=open(nameImg,"","width="+width+"px ,height="+height+"px, scrollbars=yes");
}

function open_window(link,w,h) {
    var win = "width="+w+",height="+h+",menubar=no,location=no,resizable=no,scrollbars=yes";
    newWin = window.open(link,'newWin'+w+h,win);
} 
