function mod_em_b(){
	var sectionsVar = YAHOO.util.Dom.getElementsByClassName('modifiedmaillinks', 'a', '');
	for (var i = 0; i < sectionsVar.length; i++)
	{
		if (sectionsVar[i].title.indexOf("JSRequiredForEmailLinkToWork") > -1) {
			sectionsVar[i].href = sectionsVar[i].title.replace(new RegExp('JSRequiredForEmailLinkToWork','g'),'mailto:').replace(new RegExp(' at ','g'),'@');
			sectionsVar[i].title = '';
		}
		if (sectionsVar[i].innerHTML.indexOf(" at ") > -1) {
			sectionsVar[i].innerHTML = "email";
			//sectionsVar[i].innerHTML = sectionsVar[i].innerHTML.replace(new RegExp(' at ','g'),'@');
		}
	}
}

function clearBox(box) {
	if(box.value==box.defaultValue) {
		box.value = "";
	}
}