function showPicture(title,file,width,height) {
	var x,y;
	x=getMidX(width);
	y=getMidY(height);

	var wnd=window.open("","",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left='+x+',top='+y+',width='+width+',height='+height+"'");
	wnd.document.writeln('<html><title>'+title+'</title><head></head><body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0" rightmargin="0" onBlur="self.close();"><a href="javascript:self.close();"><img src="'+file+'" border="0" width="'+width+'" height="'+height+'"></a></body></html>');
	wnd.document.close();
}
