function emailprotector(which)
{

	if (which=='owner')
	{
		user = "peter";
		site = "WebParity.net";
		name = "Contact Consulting Services Manager";
		subj = "?subject=I'm interested in an speaking to you about your consulting services";
		status = 'Email the Consulting department';
	}
	if (which=='webmaster')
	{
		user = "webmaster";
		site = "webparity.net";
		name = "Questions about the Website";
		subj = "?subject=I'm interested in your services or have a question about the website.";
		status = "General Questions to WebParity.net";
	}
	if (which=='generalinfo')
	{
		user = "information";
		site = "webparity.net";
		name = "General Information about WebParity.net and how we can help you...";
		subj = "?subject=I'm interested in an appointment and learning more about your services.";
		status = "Contact WebParity.net regarding general information";
	}
	if (which=='hotcell')
	{
		user = "4438400689";
		site = "txt.att.net";
		name = "Text Message Consultant Services";
		subj = "?subject=Can you contact me right away?";
		status = "Contact your Consultant Services Via Text Message";
	}
	
		var email = '<a href=\"mailto:' + user + '@' + site + subj +'\">';
		var usr = name +'</a>';
		//alert(email+usr);
		return email+usr;
		
}

function graphic_emailprotector(which)
{
	if (which=='owner')
	{
		user = "peter";
		site = "webparity.net";
		name = "Email";
		subj = "?subject=I'm interested in an appointment and learning more about your services.";
		status = "Do you have a few questions before you make a decision?";
	}
		var email = 'mailto:' + user + '@' + site + subj + '';
		var stringText = '<area shape=\"rect\" coords=\"45,40,60,53\" href='+email+' alt=\"Send Webparity.net an email\">';
	
		return stringText;
}
function tellAFriend(name)
{	
	var good;	
	if ((name=="     Enter Friend's name Here")||(name=="")||(name==null))
		{
			alert("Please enter a FIRST Name");
			window.document.eMailer.name.focus();
			window.document.eMailer.name.select();
			good = false;
		} else {
			
			good = true;
		}

	var initialsubj="Magically Yours DJs is doing my event; how about giving them a call for yours!";
	var initialmsg="Hi "+ name + " you may want to check out their site: http://www.magicdjs.com. "
				+	"They&rsquo;ve been in business for nearly two decades and DJ Pete will even come "
				+ 	"out to meet you and your fianc&eacute; \'in person\' at your convenience at no additional charge!";

	//alert(name);
	mailThisUrl();
	<!-- Begin

	function checkEmailAddress(field) 
	{
	
		var goodEmail = field.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\.sex)|(\.biz)|(\.aero)|(\.coop)|(\.museum)|(\.name)|(\.pro)|(\..{2,2}))$)\b/gi);
		if (goodEmail) 
		{
			good = true;
		}
		else {
			alert('Please enter a valid address.');

			window.document.eMailer.email.focus();
			window.document.eMailer.email.select();
			good = false;
		   }
	}
	u = window.location;
	function mailThisUrl() 
	{	
		good = false
		checkEmailAddress(window.document.eMailer.email.value);
		if (good) 
		{
			//window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+document.title+" "+u;
			window.location = "mailto:"+document.eMailer.email.value+"?subject="+initialsubj+"&body="+initialmsg;
	   }
	}
	//  End -->	
}