	function ShowEmailToFriendLink(){
		var linktext = "";
		var subject = "MarkMonitor.com: "+document.title;
		var pagetitle = $("h1").html();				
		var subhead = $("h2").html();
		var pagelink = document.URL;
		var footer = "More than half of the Fortune 100 trust MarkMonitor to protect their brands online.%0Ahttp://www.markmonitor.com/";

		var showlink 	= "";
		showlink 		+= ""+
			"<a class=\"email-to-friend\" href=\"mailto:enter email address?"+
			"subject="+subject+
			"&body=";
		
		/* did we get an h1 tag ? */
		if (pagetitle != null){
			pagetitle = escape(pagetitle);
			showlink 		+= pagetitle+"%0A";			
		}

		/* did we get an h2 tag ? */
		if (subhead != null){
			subhead = escape(subhead);
			showlink 		+= subhead+"%0A";
		}		
		
		showlink 		+= pagelink+"%0A%0a"+	
			footer+			
			"\">"+linktext+"</a>";		
		
		//alert(showlink);
		document.write(showlink);		
	}