// All scripts (c) Velocity Design %YEAR% (+44 01952 632755) enquiries@velocitydesign.co.uk
// This script may not be copied, modified, or used outside the context of %PRIMARY_DOMAIN%
// without express written permission from Velocity Design Ltd.

var isDOM = (document.getElementById ? true : false);
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);

function getRef(id) {
	if (isDOM) return document.getElementById(id);
	if (isIE4) return document.all[id];
	if (isNS4) return document.layers[id];
}