// JavaScript Document

function show_image(image,width,height,title)
{
	var left = (window.screen.availWidth / 2) - (width / 2);
	var top = (window.screen.availHeight / 2) - (height / 2);

	var newWindow = window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=0,resizable=no,width=' + width + ',height=' + height + ',left=' + left + ',top=' + top );
	
	var tmp = newWindow.document;
	tmp.open();
	tmp.write('<html><head><title>' + title + '</title>');
	tmp.write('</head><body topmargin="0" leftmargin="0" onClick="javascript: window.close();"><img src="' + image + '">');
	tmp.write('</body></html>');
	tmp.close();
}

