

// Anti-Spam Tool - Hide web page e-mail addresses from spiders
// © 2002 Wizard Graphics - Incept: 2002-05-01

function contact(name,bogus,host,title,subj,topic){
	var delim = "\@";
	var href   = 'mailto:';
	// the next statement redirects info and webmaster to vayu

	var recipient = href + name + delim + host;

	if (topic == "none" || topic == null) {
		var topic = " ";
	}

	if (subj == "none" || subj == null) {
		var subj = " ";
	}
	else if (subj == "area" && topic != " ") {
		var subj = "Information Request for Uncle Tantra: " + topic;
	}
	else if (subj == "area") {
		var subj = "Uncle Tantra Information Request";
	}


	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);
}





