
function showImage(url, width, height)
{
		var wnd = window.open("", "sfimage", "width=" + width + ",height=" + height);
		var doc = wnd.document;
		
		doc.open();
				
		doc.write('<html><head><title></title></head><body bgcolor="#000000" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" link="#000000" onBlur="self.close()">'); 
		doc.write('<a href="javascript:self.close()">'); 
	    doc.write('<img src=' + url + ' width=' + width + ' height=' + height + ' alt="" border="0">');
		doc.write('</a>');  
	    doc.write('</body></html>');
    
		doc.close();
		wnd.focus();
}

