function Zoom(url,width,height) {
	splash=window.open(url,'splash2',"left=30,top=80,width="+width+",height="+height+",scrollbars=0,resizable=0")
	splash.focus()
}


function wopen(imgName, w , h, Title)
{
	var wo = window.open("", "NeWin", "width = " + (w+4) + " , height = " + (h+4) + ", resizable=0, scrollbars=0, status=0");
	var win = wo.document.open();
	win = "<html><head><title>";
	win += Title;
	win += "</title></head>";
	win += "<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'>";
	win += "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center'>";
	win += "<a href='#' onClick='self.window.close();'><img src='" + imgName + "' width='" + w + "' height='" + h + "' border='0' alt='" + Title + "'></a>";
	win += "</td></tr></table>";
	win += "</body></html>";
	wo.document.write(win);
	wo.document.close();	
}