function newWin(nameImg,width,height) {
    width = width + 30;
	height = height + 30;
	win=open(
        "",
        "",
        "left=50" +
        ",top=50" +
        ",width="+width+",height="+height
    );
    win.document.write('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table style="height: 100%; width: 100%;" cellpadding=0 cellspacing=0 border=0><tr><td style="height: 100%; width: 100%; text-align: center; vertical-align: middle;"><img src="'+nameImg+'" style="cursor:hand;" onclick="window.close();" alt=""></td></tr></table></body></html>');
    win.document.close();
}

function newWinPrint(nameImg,width,height) {
    win=open(
        "",
        "",
        "left=" + (self.screen.width - width) / 2 +
        ",top=" + (self.screen.height - height) / 2 +
        ",width="+width+",height="+height
    );
    win.document.write('<body onLoad="self.print()" 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+",height="+height+", scrollbars=yes");
}

function open_window(link,w,h) {
	w = w+20;
    return open(
        link,
        "newWin" + w + h,
        "left=" + (self.screen.width - w) / 2 +
        ",top=" + (self.screen.height - h) / 2 +
        ",width=" + w + ",height=" + h +
        ",scrollbars=yes"
    );
} 
