<!--


	function OpenReferenceInNewWindow(linkObject, name) // seems to be buggy if already open...
	{
		// xhtml target = _blank replacement with respect to seo; use <a href="dummy.pdf" onclick="return OpenReferenceInNewWindow(this, 'myname');" ....
		// could also use onclick="this.target='_blank'" assuming browsers support target attribute
		if (!linkObject) return;

		if(typeof(popupWin) != "object" || popupWin.closed) 
		{  
			var args = '';
			popupWin = window.open(linkObject.href, name); 
		} 
		else 
		{ 
			popupWin.location.href = linkObject.href; 
		} 

		popupWin.focus(); 
		return false;
	}


	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;
	//	});
	//});




//-->
