<!--
var temp="", lhs="", rhs="";
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 if (type == "text" && val != null)
		{
			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;
}
//-->