function isSmartphone()
{
	// User-Agent-String auslesenvar
	UserAgent = navigator.userAgent.toLowerCase();
	
	// User-Agent auf gewisse Schlüsselwörter prüfen
	if(UserAgent.search(/(iphone|ipod|opera mini|fennec|palm|blackberry|android|symbian|series60)/)>-1) {
		// mobiles Endgerät
		return true;	
	}
	return false;
}

function checkBrowser()
{
	if (isSmartphone()) {
		if (window.location.pathname=="/") {
			window.location = "http://mobile.rsv-koelliken.ch/index.htm";
		} else {
			window.location = "http://mobile.rsv-koelliken.ch" + window.location.pathname;
		}
	}
}
