
// Email to : marie brown

var url1   = "marie@mariefineart.com";
var txt1   = "Marie@MarieFineArt.com";
var txt2   = "email me";

var url2   = "webmaster@mariefineart.com";
var webmstr= "webmaster@MarieFineArt.com";
var webm   = "email webmaster";

function  contact(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()">' + txt1 + '</a>';
	return output;
}
function  email_me(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()">' + txt2 + '</a>';
	return output;
}
function  webmaster(){
	output = '<a href="mailto:' + url2 + '" onFocus="this.blur()" class="web">' + webmstr + '</a>';
	return output;
}
function  web(){
	output = '<a href="mailto:' + url2 + '" onFocus="this.blur()" class="web">' + webm + '</a>';
	return output;
}

