function emailprotector(which)
{

	if (which=='van')
	{
		user = "vanramey";
		site = "rameymusic.net";
		name = "Contact Van Ramey - The Owner";
		subj = "?subject=I'm interested in an speaking to you about your services";
		status = 'Email the Owner';
	}
	if ((which=='jon')||(which=='privacy'))
	{
		user = "jonallen";
		site = "rameymusic.net";
		name = "Contact Jon Allen";
		subj = "?subject=I'm interested in an speaking to you about your services and maintaining my privacy";
		status = 'Email the Production Department';
	}	
	if (which=='web')
	{
		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";
	}
	
		var email = '<a href=\"mailto:' + user + '@' + site + subj +'\">';
		var usr = name +'</a>';
		//alert(email+usr);
		return email+usr;
		
}

function graphic_emailprotector(which)
{
	if (which=='van')
	{
		user = "vanramey";
		site = "rameymusic.net";
		name = "Contact Owner";
		subj = "?subject=I'm interested in an speaking to you about your services";
		status = 'Email the Production Department';
	}
		var email = 'mailto:' + user + '@' + site + subj + '';
		var stringText = '<area shape=\"rect\" coords=\"45,40,60,53\" href='+email+' alt=\"Send Ramey Music LLC 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 -->	
}