function detectBrowser(disable){
	if(disable==true){
		return;
	}
	var agent=navigator.userAgent.toLowerCase();
	if ((agent.indexOf('iphone')!=-1) || (agent.indexOf('android')!=-1) || (agent.indexOf('webos')!=-1)){
		window.location.href="http://m.osu.edu/";
	}
	if ((agent.indexOf('blackberry')!=-1) || (agent.indexOf('nokia')!=-1)){
		window.location.href="http://osu.edu/mobile/";
	}
}
detectBrowser();			
