<!-- 
function DisplayWindow(url, title, img_w, img_h) 
{ 
	var win=window.open("","_blank",'width='+img_w+',height='+img_h+',resizable=0,top=0,left=0,marginheight=0,marginwidth=0,dependent=no,directories=no,menubar=no,status=no,resizable=no,location=no');
	win.document.open();
	win.document.write("<head><title>" + title + "</title></head><body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0><center>");
	//alert(win.document.body.clientWidth);
	win_w = win.document.body.clientWidth;
	win_h = win.document.body.clientHeight;
	w_r = img_w/win_w;
	h_r = img_h/win_h;
	
	// width to height ratio
	if((w_r > 1) || (h_r > 1))
	{
		if(w_r > h_r)
		{	
			// Adjust image width
			new_width = win_w;
			new_height = img_h/w_r;
			//win.document.body.clientHeight = new_height+2;
		}
		else
		{
			new_height = win_h;
			new_width = img_w/h_r;
			//win.document.body.clientWidth = new_width+2;
		}
	}	
	else
	{
		new_width = img_w;		
		new_height = img_h;		
	}
	
	win.document.write("<img src=\"" + url + "\" name=\"img_res\" align=\"center\" width=\"" + new_width + "\" height=\"" + new_height + "\"></center></body>");
//	win.document.write("<BR>"+win_w+"&nbsp;"+win_h+"&nbsp;"+img_w+"&nbsp;"+img_h+"</center></body>");
	win.document.close(); 
}


//-->