function ShowImage(image,title,w,h)
{
	wnd = open("","popup","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,left="+(screen.width-w)/2+",top="+(screen.height-h)/2+",width="+w+",height="+h);
	wnd.focus();


	wnd.document.open();
	wnd.document.write('<html><head><title>'+title+'</title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginheight="0" marginwidth="0">');
	wnd.document.write('<img src="'+image+'">');
	wnd.document.write('</body></html>');
	wnd.document.close();

}