// JavaScript Document
function MrYorkshireBlackStamp(){
	MrYorkshire('logo-black.gif');
}
function MrYorkshireWhiteStamp(){
	MrYorkshire('logo-white.gif');
}
function MrYorkshireWhiteWithTextStamp(){
	MrYorkshire('logo-white-text.gif');
}
function MrYorkshire(stampName){
		var str = '<a href="http://www.mryorkshire.com" title="Approved by MrYorkshire.com" target="_blank"><img style="border:0px; padding:0px;" src="http://www.mryorkshire.com/images/stamps/' + stampName + '" title="Approved by MrYorkshire.com" alt="Approved by MrYorkshire.com" /></a>';
	document.write(str);
}