// by Garry Butcher
// Script that checks for old browsers and redirects if Browser unable to support id therefore not web standards browser

if (!document.getElementById) {
	window.location = "oldbrowser.html";
}