function open_win(url, w, h){
lnk = url+".html";
stat = "location=0,menubar=0,reziseable=0,scrollbars=0,status=0,toolbar=0,width="+w+" ,height="+h;
f = window.open(lnk, "_blank", stat)
void f
}

function open_detail(mid, mo, id){
lnk = "detail.php?mid="+mid+"&mo="+mo+"&id="+id;
stat = "location=0,menubar=0,reziseable=0,scrollbars=0,status=0,toolbar=0,width=740,height=480";
f = window.open(lnk, "_blank", stat)
void f
}

// Datenschutzerklärung
function FensterOeffnena (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "width=640,height=480,left=0,top=0");
  Fenster1.focus();
}


//Statusleiste

var str=""

function setMessage()
{
    if (str == "")
    {
        for (var ii = 0; ii < 200; ii += 10) {str = str + "          "}
        str = str + "Schön dass Sie diese Seite besuchen"
    }
    else
    {
        str = str.substring(2, str.length)
    }
    window.status = str
    OPopOP = window.setTimeout('setMessage()',50)
}