// error handling, can be switched off
window.onerror = showError;

function showError( e, f, l ){
	window.alert("Please report the following error to info@yourwebsite.co.uk.\nFile: " + f + "\nLine: " + l + "\nError:" + e);
	return true;	
}

// variables
var customerServiceEmail = "info@yourwebsite.co.uk";
var customerServicePhone = "01926 736 796";
var siteShortURL = "yourwebsite.co.uk";

// custom function placeholders
function customInit() { }
function customTextOnly() { }
function customVisual() { }
function customMetrics() { }
function customValidate() { }


