function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function SelectMenu(sPageName)
{
	sPageName = sPageName.substr(sPageName.lastIndexOf('/') + 1).toLowerCase();
	sPageName = sPageName.substr(0, sPageName.lastIndexOf('.'));
	if (document.getElementById(sPageName))
	{
		document.getElementById(sPageName).style.fontWeight = 'Bold';
		document.getElementById(sPageName).style.color = '#000';
	}
}


function WriteEmail(name, domain)
{
	document.write('<a href=\"mailto:' + name + '@' + domain + '\">');
	document.write(name + '@' + domain + '</a>');
}
