<!--
function iPhoneAlert() {
	if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPod/i))){
		var question = confirm("Would you like to view the iPhone optimized version of our site?")
		if (question){
		window.location = "http://www.paulthrelfall.co.uk/iphone/Home.html";
		}else{
		window.location = "http://www.paulthrelfal.co.uk";
		}
	}	
}
//-->
