
var wt = 0, th = 0;

screen_w = window.screen.width - 5;
screen_h = window.screen.height - 30;

function popImage(fpath, w, h)
{
	w = Number (w);
	h = Number (h);
	
	if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Macintosh") == -1 && navigator.appVersion.indexOf("68K") == -1) {
		offset_x = 0;
		offset_y = 0;
	}else{
		offset_x = 1;
		offset_y = 5;
	}
	
	if (w >= screen_w && h <= screen_h){
		wt = (screen_w - 10);
		th = (h + offset_y + 16);
		new_window = open("","displayWindow","width=" + (screen_w - 10) + ",height=" + (h + offset_y + 16) + ",left=0 ,scrollbars=yes,resizable=no");
	} else if ( w <= screen_w && h >= screen_h ){
		wt = (w + offset_x + 16);
		th = (screen_h - 30);
		new_window = open("","displayWindow","width=" + (w + offset_x + 16) + ",height=" + (screen_h - 30) + ",top=0 ,scrollbars=yes,resizable=no" );
	} else if ( w >= screen_w && h >= screen_h ){
		wt = (screen_w - 10);
		th = (screen_h - 30);
		new_window = open("","displayWindow","width=" + (screen_w - 10)+ ",height=" + (screen_h - 30) + ",left=0, top=0, scrollbars=yes,resizable=no" );
	} else {
		wt = (w + offset_x);
		th = (h + offset_y);
		new_window = open("","displayWindow","width=" + (w + offset_x) + ",height=" + (h + offset_y) + ",resizable=no");
	}		
		
	new_window.document.open();

	new_window.document.write("<html>");
	new_window.document.write("<head>");
	new_window.document.write("<title>Large Image</title>");
	new_window.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
	new_window.document.write("</head>");
	new_window.document.write("<body marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\" leftmargin=\"0\">");
	new_window.document.write("<table height=\"100%\" width=\"100%\" align=\"center\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">");
	new_window.document.write("<tr>");
	new_window.document.write("<td><a href=\"javascript:window.close()\"><img src=\"" + fpath + "\" width=\"" + w + "\" height=\"" + h + "\" border=\"0\" alt=\"Click to close the window\"></a></td>");
	new_window.document.write("</tr>");
	new_window.document.write("</table>");
	new_window.document.write("</body>");
	new_window.document.write("</html>");

	new_window.document.close(); 
}

