<!--

	function em_combine(target_element_id, txtHref1, txtHref2, txtHref3, txtHref4, txtText1, txtText2, txtText3, txtText4, bTextIsMailAddress)
	{
		var theOutputElement = document.getElementById(target_element_id);
		var mailHref = txtHref1 + txtHref2 + '@' + txtHref3 + '.' + txtHref4;
		var mailText = txtText1 + txtText2 + ((bTextIsMailAddress) ? '@' : '') + txtText3 + ((bTextIsMailAddress) ? '.' : '') + txtText4;
		var theString = '<a href="mailto:' + mailHref + '">' + mailText + '</a>';
		//alert(theString);
		if (theOutputElement)
		{
			theOutputElement.innerHTML = theString;
		}
		else
		{
			document.write(theString);
		}
		return true;
	}



	// jQuery to open all external links in a new window
	//$(function() {
	//	$(“a[href*='http://']:not([href*='"+location.hostname+"'])”).click( function() {
	//		window.open(this.href);
	//		return false;
	//	});
	//});




//-->
