// JavaScript Document

//=================================================================
// function buttonClassStyle(theButton, thePointerStyle)
//=================================================================
function buttonClassStyle(theButton, thePointerStyle)
{
 if (thePointerStyle == '') {
        return false;
    }
	
 	theButton.className = thePointerStyle;
    return true;
	
}// end of the 'buttonClassStyle()' function

function eml_coder(account,domain,dotwhat,subject){
	if(subject != undefined){
		writeSubject = "?subject="+subject;
	}else{
		writeSubject = "";
	}
	document.write('<a href="m&#97;ilto:'+account+'&#37;40'+domain+'&#46;'+dotwhat+''+writeSubject+'" title="Email Us">'+account+'&#64;'+domain+'&#46;'+dotwhat+'</a>');
}

