var mame = "web";
var name = "barbara";
var domain = "metamorphosiswellness.com";
var display = "Email Metamorphosis";
var misplay = "MacOracle Ent";

function macomail() {
document.write('<a href=mailto:' + mame + '@' + domain + ' class=nother' + '>' + misplay + '</a>');
}
function mwcomail() {
document.write('<a href=mailto:' + name + '@' + domain + ' class=nother' + '>' + display + '</a>');
}
function mwcemail() {
document.write('<a href=mailto:' + name + '@' + domain + '>' + display + '</a>');
}

<!--
startMenu = function() {
	if (document.all&&document.getElementById) {
		BAA_cssmenu = document.getElementById("BAA_csstopmenu");
		for (i=0; i<BAA_cssmenu.childNodes.length; i++) {
			node = BAA_cssmenu.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function(){
					this.className=this.className.replace(" over", "")
				}
			}
		}
	}
}

if (window.attachEvent)
window.attachEvent("onload", startMenu)
else
window.onload=startMenu;

//-->


/************************************

	Custom Alert Demonstration
	version 1.0
	last revision: 02.02.2005
	steve@slayeroffice.com

	Should you improve upon this source please
	let me know so that I can update the version
	hosted at slayeroffice.

	Please leave this notice intact!

************************************/

var ALERT_TITLE = "Metamorphosis Wellness Center Disclaimer";
var ALERT_BUTTON_TEXT = "Close";

if(document.getElementById) {
	window.alert = function(txt) {
		createCustomAlert(txt);
	}
}

function createCustomAlert(txt) {
	d = document;

	if(d.getElementById("modalContainer")) return;

	mObj = d.getElementsByTagName("body")[0].appendChild(d.createElement("div"));
	mObj.id = "modalContainer";
	mObj.style.height = d.documentElement.scrollHeight + "px";
	
	alertObj = mObj.appendChild(d.createElement("div"));
	alertObj.id = "alertBox";
	if(d.all && !window.opera) alertObj.style.top = document.documentElement.scrollTop + "px";
	alertObj.style.left = (d.documentElement.scrollWidth - alertObj.offsetWidth)/2 + "px";
	alertObj.style.visiblity="visible";

	h1 = alertObj.appendChild(d.createElement("h1"));
	h1.appendChild(d.createTextNode(ALERT_TITLE));

	msg = alertObj.appendChild(d.createElement("p"));
	msg.appendChild(d.createTextNode(txt));

	btn = alertObj.appendChild(d.createElement("a"));
	btn.id = "closeBtn";
	btn.appendChild(d.createTextNode(ALERT_BUTTON_TEXT));
	btn.href = "#";
	btn.onclick = function() { removeCustomAlert();return false; }
}

function removeCustomAlert() {
	document.getElementsByTagName("body")[0].removeChild(document.getElementById("modalContainer"));
}
