function openImage( file, size, title ) {
	var wnd = window.open(
		'', 
		'_blank',
		'copyhistory=no,directories=no,location=no,'+
		'status=no,scrollbars=no,menubar=no,'+
		'toolbar=no,resizable=no,' + size
	);
	var html = "<html>\n";
	html = html + "<head>\n";
	html = html + "<title></title>\n";
	html = html + "<\/head>\n";
	html = html + "<body style=\"margin: 0px;\">\n"; 
	html = html + "<center><a onclick='window.close();'><img "+"style=\"vertical-align: center; margin: 0px;\""+" src=\""+file+"\" border=0 ></a><\/center>";
	html = html + "<\/body>\n";
	html = html + "<\/html>\n";

	wnd.document.write(html);
}
