function wopen(imgName, w , h, Title)

{

	var wo = window.open("", "abc", "width = " + w + " , height = " + h + ",status=0");

	wo.document.open();

	var win = "";

	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' onload='resizeTo(document.getElementById(\"mainImage\").width+8,document.getElementById(\"mainImage\").height+26);'>";

	win += "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center'>";

	win += "<a href='#' onClick='self.window.close();'><img id='mainImage' src='" + imgName + "' border='0' alt='" + Title + "'></a>";

	win += "</td></tr></table>";

	win += "</body></html>";

	w += 8;

	h += 26;

	wo.window.resizeTo(w, h);

	wo.document.write(win);

	wo.window.focus();

	wo.document.close();	

}
