
// Email to : Pickering Gallery

var url1   = "sales@pickeringgallery.com"
var txt1   = "sales@PickeringGallery.com"
var txt2   = "email us"

var url2   = "webmaster@pickeringgallery.com"
var webmstr= "webmaster@PickeringGallery.com"
var webm   = "email webmaster"

function  contact(){
	output = '<a href="mailto:' + url1 + '" onFocus="this.blur()" class="green10b">' + txt1 + '</a>';
	return output;
}
function  email_us(){
	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;
}
