if (top != self)
    top.location.href = "/";

var frameWidth = 0;

function setFrameSize() {
    var isSmall = (top.location.href.toLowerCase().indexOf('mini.php') > -1 || top.location.href.toLowerCase().indexOf('handy.php') > -1);
    var myWidth = top.innerWidth || top.document.body.clientWidth || top.document.getElementById('gesamt').clientWidth;
    var myHeight = top.innerHeight || top.document.body.offsetHeight || top.document.getElementById('gesamt').clientHeight;
    try { grnav.wHeight = myHeight } catch (e) { };
    if (myWidth == 0 || myWidth == frameWidth)
        return;
    else
        frameWidth = myWidth;
    var fWidth = 0;

//	if (((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) && !isSmall) {
//		top.location.replace('/handy.php');
//	} else {
	    if (myWidth > 608) {
	        if (isSmall) {
	            	top.location.replace('/'); //mini.php
	        }
	    } else {
		if (!isSmall) {
	        	top.location.replace('/mini.php');
		}
	    }
//	}
}
