var mclients=new Array("nokia","panasonic", "sharp","vodafone","blackberry","philips","samsung","midp","240x320","netfront","portalmmm","sie-","sonyericsson","symbian","windows ce","benq","mda","mot-","opera mini","pocket pc","sagem","sda","sgh-","xda");

function ismobile() {
	try {
		myuA=navigator.userAgent;
		myuA=myuA.toLowerCase();
		for (var i=0; i < mclients.length; i++)
		if (myuA.indexOf(mclients[i]) != -1)
		return true;
	}
	catch (e) {}
	return false;
}

function mobileClients2mobi() {
	try {
		if (ismobile()) {
			if (document.location.href.indexOf('noMobileClient') != -1) {
				document.cookie='noMobileClient';
				return;
			}	
			if (document.cookie && document.cookie.indexOf('noMobileClient') != -1) 
			return;
			/*document.location.href="http://dynamo-dresden.mobi/?fromStartpage=1";*/
			document.location.href="http://dynamo-dresden.mobi/";
		}
	}
	catch (e) { 
	}
}

mobileClients2mobi();