// JavaScript Document

// <a href="javascript:mailto('lasermedrentals.com','rentals')">rentals@lasermedrentals.com</a>
function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}

function showImg(theImgId){
document.getElementById(theCurrentImgId).style.display = "none";
theCurrentImgId = theImgId;
document.getElementById(theImgId).style.display = "block";
}

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";
		};
		thePanel.style.border = "1px solid blue"
	};
	if ( theClickTag == 'Read Less' ) {
		theID.firstChild.nodeValue = 'Read More';
		for ( var i = 0; i < theElementList.length; i++ ) {
			theElementList[i].style.display = "none";
		};
		thePanel.style.border = "1px solid #F0F0F0"
	};
}
