// JavaScript Document
//
// <a href="javascript:mailto('yourdomain.com','you')">you@yourdomain.com</a>
//
function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}

function flipMorePanel(theID) {
	thePanel = theID.parentNode;
	theClickTag = theID.firstChild.nodeValue;
	var theElementList = thePanel.getElementsByTagName("div");
	if ( theClickTag == 'Read More' ) {
		theID.firstChild.nodeValue = 'Read Less'; 
		for ( var i = 0; i < theElementList.length; i++ ) {
			theElementList[i].style.display = "block";
		};
	};
	if ( theClickTag == 'Read Less' ) {
		theID.firstChild.nodeValue = 'Read More';
		for ( var i = 0; i < theElementList.length; i++ ) {
			theElementList[i].style.display = "none";
		};
	};
}
