// Browserumleitung zur WAP Page falls Mobiles Gerät
var app = navigator.appName;
var pla = navigator.platform;
var Ausdruck = /(\w.+)\s(\w.+)\s(\w.+)\s(\w.+)/;

Ausdruck.exec(app);

if (RegExp.$2 =="Pocket")										// Für Microsoft Pocket Internet Explorer
{ window.location.href="iphone/index.php"; }

if (RegExp.$2 =="Mobile")
{ window.location.href="iphone/index.php"; }						// Für Opera Mobile Internet Explorer

if (pla =="WinCE")
{ window.location.href="iphone/index.php"; }						// Für Microsoft Platform W inCE

