
// Email to : ROB BRISTOW

var url1   = "robbristowfineart@ntlworld.com"
var txt1   = "RobBristowFineArt@ntlworld.com"
var txt2   = "email me"

var url2   = "webmaster@robbristowfineart.com"
var webmstr= "webmaster@RobBristowFineArt.com"
var webm   = "email webmaster"

function  contact(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()" class="mail10b">' + txt1 + '</a>'
	return output;
}
function  email_me(){
	output = '<a class="maroon10u" href="mailto:' + url1 + '" onFocus="this.blur()">' + txt2 + '</a>';
	return output;
}
function  inline(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()">' + txt1 + '</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;
}
