// JavaScript Document
function gomail( addr ) {
	var email = addr.replace('s#', '@' );
	email = email.replace('orz', 'com' );
	email += ".au"
    window.location= "mailto:" + email;
}

var one="leah", two="@", three="theboathouse", four="com", five="au";
var theAddress = one+two+three+"."+four+"."+five;

function getMail(){
	window.location="mail"+"to:"+theAddress;
}

function addEffect(state){
	if(state=='out'){
		document.getElementById("eadd").style.textDecoration='none';
		document.getElementById("eadd").style.color='666600';
	}
	else if(state=='over'){
		document.getElementById("eadd").style.color='blue';
		document.getElementById("eadd").style.textDecoration='underline';
	}
}

function putemail(){
	document.getElementById("eadd").innerHTML=theAddress;
}
