// Hide email from spammers
function hiddenEmail() {
location.href = "mailto:matt@matt3r.co.uk";
}

// Browser window //
function openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}