
function checkmobile()
{
	agentsmobile = ["iphone","blackberry","opera mini","android"];
	agent = navigator.userAgent.toLowerCase();
	for(var x = 0; x < agentsmobile.length; x++) {
	if (navigator.userAgent.toLowerCase().indexOf(agentsmobile[x]) > -1 && document.referrer.indexOf("biallo.de")== -1) {
		checkalert = confirm("Biallo.de auf Ihrem Handy. Wollen Sie auf die biallo-mobil Seite wechseln?");
		if (checkalert == true) { window.location.href = "http://biallo.mobi";  return; }
		}
	}
}

checkmobile();
