function iPhoneAlert( )
{
	if ( navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/BlackBerry/i)){
		var qes   = confirm( "Möchten Sie zur mobilen Seite wechseln?" );
		if ( qes ){
			window.location   = "http://mobil.cosomedia.de";
		}	
	}
}
iPhoneAlert();
