<!--
window.onerror = null;

var navigation = false
var navigationline = false
var navigation_alternative = false

window.onload=init
function init(){
	if (self!=top && typeof top.setNavi != "undefined" && navigation){
		if (navigationline){
			top.setNavi( navigation, navigationline, navigation_alternative )
		} else {
			top.setNavi( navigation, navigation_alternative )
		}
	}
	if (typeof initHighlight != "undefined") initHighlight()
}
if (self == top){
	host = location.href
	if ( host.indexOf("/../") != -1 ) {
		host = host.substring(0, host.indexOf("/", 8) + 0) + "/index.html?content="
	} else {
		host = host.substring(0, host.indexOf("/", 8) + 0) + "/index.html?content="
	}

	file = location.href
	if ( file.indexOf("/../") != -1 ) {
		file = file.substring(file.indexOf("/../") + 23, file.length)
	} else {
		file = file.substring(file.indexOf("/../") + 23, file.length) <!----- 24 is not to take the string length 24 after reference-----!>
	}
	newLocation = host + file
	top.location.href = newLocation
}
function openPopup(url, width, height, winname) {
	var trails="width=" + width + ",height=" + height + ",toolbar=no,directories=no,status=no,scrollbars=yes,resize=no,menubar=no";
	newWindow=window.open(url,winname,trails);              
}
function openPopupPosition( url, width, height, left, top, winname ) {
	var trails = "width=" + width + ",height=" + height + ",left=" + left +",top=" + top +",toolbar=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no";
	newWindow = window.open( url, winname, trails);
}

// 070501 - az - phonepower
function openclose () {
        if (typeof top.opener.top != "undefined"){
            if (typeof top.opener.top.c == 'undefined') top.close();
			else
                if (typeof top.opener.top.c.document.homepage != "undefined"){
                        top.opener.top.visible.c.location.href='';
                } else {
                        if (typeof top.opener.top != "undefined"){
                                if (typeof top.opener.top.c != "undefined"){
                                        top.opener.top.c.location.href = "/eng/products/port/telephones.html"
                                }
                        }
                }
        }
        top.close();
}

function load_ticker( filename ){
// stellt einen gewuenschten Ticker dar
        ticker_aktive = true;
		root_dir = "/../"
        if (filename==""){
                top.ticker.location.href = "ticker-empty.html";
        } else {
                if (top.ticker.location.href !=   filename){
                        top.ticker.location.href =   filename;
                } else {
                }
        }
}
//-->