//////////////////////////////
// Positionierung der Layer //
ns6 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) > 4 ));
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4 ));

if(ns6) {
    doc = "document.getElementById('";
    sty = "').style";
    htm = ""
} else if(ns4) {
    doc = "document.";
    sty = "";
    htm = ".document"
} else if(ie4) {
    doc = "document.all.";
    sty = ".style";
    htm = ""
}

function details(adresse,name,x,y,s,m){
        detail = window.open(adresse, name, "scrollbars="+s+",menubar="+m+",status=no,width=" +x+ ",height="+y  );
}


