//Javascript (c) Mesotier Ltd 2004. All rights reserved.
function popImage(src){
var wopts="toolbar=no, directories=no,location=no, status=yes, menubar=no, resizable=yes, ";
wopts += "scrollbars=no, width=400, height=350";
var win=window.open('', 'newwin',wopts );
	with (win.document){
		clear();
		write('<html><meta http-equiv="Content-Type" content="text/html" charset="iso-8859-1">');
		write("<body onBlur=\"window.close()\">");
		write("<br>");
		write("<img src=\"" + src + "\" alt=\"\">");
		write("<br><a href='javascript:void self.close()'>Close</a>");
		write("</body></html>");
		close();
	}
}
function printEmailHyperlink(who,where){
	var url;
	url = who + '@' + where;
	document.write('<a href="mailto:' + url + '">' + url + '</a>');
}




