function newWin(nameImg,width,height) {
	win=open("","","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 redirect(url) {
	location = url;
}