function over(o){
	o.style.backgroundColor="#ffffff";
	o.style.color="#ff0000";
	
}
function out(o){
	o.style.backgroundColor="#0000cc";
	o.style.color="#ffffff";
	
}
function email(){
	//info@neilmorris.demon.co.uk
	a="info"
	b="neilmorris.demon.co.uk"
	document.location = "mailto:" + a + "\x40" + b;
}

function email2(addr){
	//addr is the address with a @ sign replaced by an image
	//find the first <
	str=addr.innerHTML
	//alert (str)
	bit=str.split(/[<>]/)
	a=bit[0]
	b=bit[2]
	document.location = "mailto:" + a + "\x40" + b;
}


