function iPhoneAlert() {
if((navigator.userAgent.match(/iPhone/i))||(navigator.userAgent.match(/iPod/i))){
Check = confirm("Es gibt eine iPhone Version dieser Webseite. Jetzt wechseln?");
if (Check == true){window.location.href = "http://iphone.3iq.de/";}
}
}

/* Alternativ Version mit direkter Weiterleitung
<script language=javascript>
<!--
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
{
document.location="http://www.3-iq.de/iphone";
}
-->
</script>
*/
