
// Email to : Gregg Stone

var url1   = "debbie@debbiefordfineart.com"
var txt1   = "Debbie@DebbieFordFineArt.com"
var txt2   = "email me"

var url2   = "webmaster@debbiefordfineart.com"
var webmstr= "webmaster@DebbieFordFineArt.com"
var webm   = "email webmaster"

function  contact(){
	output = '<a class="ul" href="mailto:' + url1 + '" onFocus="this.blur()">' + txt1 + '</a>';
	return output;
}
function  gal_contact(){
	output = '<a class="gal_white" href="mailto:' + url1 + '" onFocus="this.blur()">' + txt1 + '</a>';
	return output;
}
function  contact_pg(){
	output = '<a class="contact" href="mailto:' + url1 + '" onFocus="this.blur()">' + txt1 + '</a>';
	return output;
}
function  email_me(){
	output = '<a class="ul" href="mailto:' + url1 + '" onFocus="this.blur()">' + txt2 + '</a>'
	return output;
}
function  email_me_home(){
	output = '<a class="dktanul" 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;
}
