<!--
// MAILING FUNCTION
// Summary:  This function creates a mailto link on a website
//			 To avoid emails from tracking by spambots.
// Author:  Keith A. McDonald
// Date:  August 2001
var temp="";
var lhs = "info";
var rhs = "finestdesigners.com";
var type="", val="";
function makeMail(lhs,rhs)
{
	temp ="";
	temp +=lhs;
	temp +="@";
	temp +=rhs;
}
// runIt : This function creates
// the various mail statements for
// text, image, map, class
// type : refer to previous line
// value : if extra params are needed
function runIt(type, val)
{
	makeMail(lhs,rhs);
	var content ="";
	if (!(type == "map"))
	{
		content +="<a href=\"mailto:";
		content +=temp;
		if (type == "class")
		{
			content +="\" class=\"";
			content +=val;
		}
		content +="\">";
		if (type == "image")
		{
			content +=val;
		} else {
			content +=temp;
		}
		content +="</a>";
	} else {
		content +="<area shape=\"rect\" alt=\"";
		content +=temp;
		content +="\" coords=\"";
		content +=val;
		content +="\" href=\"mailto:";
		content +=temp;
		content +="\">";
	}
	document.write(content);
	return;
}


//-->