function noSpam(user,domain){
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}
function centrePop(mypage, myname, w, h, scroll) {
window.opener = self;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
var Macintosh = navigator.userAgent.indexOf('Mac')>0 && navigator.userAgent.indexOf('MSIE')>0;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no,status=no'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}