function redirect() {
	var NewPage;
	try {	
		NewPage = document.URL;
		if (NewPage.length > 47) {
			if ("http://homepage.ntlworld.com/chris_edwards/EMTTC" == NewPage.substr(0,48)) {
				NewPage = "http://emttc.co.uk" + NewPage.substr(48);
				document.URL = NewPage;
				//alert ("Matched: " + NewPage);
			}
		}
	}	catch(e) { 
//		alert(e.description) 
	}
}

redirect();
