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>images</title></head><body bgcolor="#cccccc" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" link="#000000" onBlur="self.close()">'); 
    doc.write('<table border=0 cellspacing=0 cellpadding=0 width=100% height=100%>');
	doc.write('<tr>');
	doc.write('<td align=center valign=middle>');
	doc.write('<a href="javascript:self.close()">'); 
    doc.write('<img src=' + url + ' width=' + width + ' height=' + height + ' alt="" border="0">');
    doc.write('</a>');
	doc.write('</td>');
	doc.write('</tr>'); 
	doc.write('</table>'); 
    doc.write('</body></html>');
    
		doc.close();
		wnd.focus();
}

function openWindow(url, width, height)
{
		var wnd = window.open(url, "sfwindow", "width=" + width + ",height=" + height);		
		wnd.focus();
}




