// Anti-Spam Tool - Hide web page e-mail addresses from spiders
// © 2002 - 2005 Wizard Graphics - Incept: 2002-05-01

// The RL ORG only version
function contact(title,subj){
     var delim = "\@";
     var name = "group";
     var host = "ramalila.org";
     var href   = 'mailto:';
     var recipient = href + name + delim + host
     if (subj == "none" || subj == null) {var subj = " ";}
     if (title == "url" || title == null) {
           var title = name + delim + host;    //Displays the mailto URL as the Link Text
           var emtext = '\<a href ="' + recipient + '?subject=' + subj + '">&nbsp;' + title + '&nbsp;</a>';
     }
     else {    //Displays your provided description as the Link Text
           var emtext = '\<a href ="' + recipient + '?subject=' + subj + '">&nbsp;' + title + '&nbsp;</a>';
     }
     document.write(emtext);
}

// 	The original generic version to handle any and all email addresses
function contact2(name,bogus,host,title,subj){
	var delim = "\@";
	var href   = 'mailto:';
	var recipient = href + name + delim + host;
	if (subj == "none" || subj == null) {var subj = "Information Request";}
	var emadd = name + delim + host; 
	if (title == "url" || title == null) {
		var title = name + delim + host;    //Displays the mailto URL as the Link Text
		var emtext = '\<a title="Email to: ' + emadd + ' \nSubject: ' + subj +'"  href ="' + recipient + '?subject=' + subj + '">&nbsp;' + title + '&nbsp;</a>';
	} else {    //Displays your provided description as the Link Text
		var emtext = '\<a title="Email to: ' + emadd + ' \nSubject: ' + subj +'"  href ="' + recipient + '?subject=' + subj + '">&nbsp;' + title + '&nbsp;</a>';
	}
	document.write(emtext);
}