function go() {	
	if (top.frames.length != 0 && babelOrigUrl == null) 
	{
	top.window.location = "./"; 
//	if(window.name!=''){top.window.location='./'};
		return;
	}
}

function writeMail(ext,domain,address,hovertext,addtomailto)	{
	//Original idea from hivelogic.com
	//Modified by David Brucas
	//addtomailto can be of form '?Subject=Trip%20Report%20Photos:%20More%20than%203' or similar
	if (typeof(addtomailto)=='undefined') addtomailto = '';
	if (addtomailto.length > 0 && addtomailto.substring(0,1) != "&") addtomailto = '&'+addtomailto ;
	if (typeof(hovertext)=='undefined' || hovertext=='') hovertext = address+' &lt;*AT*&gt; '+domain+' &lt;*D0T*&gt; '+ext;
	var first = 'm'+'a';	var second = 'i'+'l';	var third = 't'+'o:';
	document.write(' <a ignorethis="ignorethis" hr'+'ef="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write('&#46;');
	document.write(ext+addtomailto);
	document.write('" title="'+hovertext+'">');

	document.write('<span class="nowrap"><!-- nospam@aol.com -->'+address+'<!-- nospam@yahoo.com -->');
	document.write('<!-- nospam@msn.com --><b><img src="./image.pov/at.gif" alt="at" border="0"/><\/b><!---->');
	document.write(domain);
//	document.write('<!----><b><img src="/image.amc/dot.gif" alt="dot" border="0"/><\/b><!--'+fake2+'-->');
	document.write('<!----><b><img src="./image.pov/dot.gif" alt="dot" border="0"/><\/b><!-- nospam@hotmail.com -->');
	document.write(ext);
	document.write('</span><\/a> ');
	}


