// JavaScript Document

/*
** Code to email us in a spam-safe way
*/
function eMailUs() 
{
	emailE=('info@' + 'lvbots.org')	;
	document.write('<A href="mailto:' + emailE + '">' + emailE + '</a>');		
}

function eMail( domain, name ) 
{
   text = name + '\@' + domain;
   document.write('<A HREF=\"mailto:' + text + '\">' + text + "</A>" );
}

