
// Email to : GILES ILLSLEY

var url1   = "giles@gilesillsleyfineart.com";
var txt1   = "Giles@GilesIllsleyFineArt.com";
var txt2   = "email me";

var url2   = "webmaster@gilesillsleyfineart.com";
var webmstr= "webmaster@GilesIllsleyFineArt.com";
var webm   = "email webmaster";

function  contact(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()" class="cream10b">' + txt1 + '</a>';
	return output;
}
function  email_me(){
	output = '<a 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;
}
