function openReservierung(  )
{
    popup = window.open("../reservierungOnline.html", "noName", "left=200, top=160, status=no, statusbar=no, toolbar=no, scrollbars=yes, resizable=no, width=400, height=400");
    
    if (popup) 
        return false; 
    else
        return true;
}

function openReservierung2(  )
{
    popup = window.open("../reservierung/reservierung.php", "noName", "left=200, top=160, status=no, statusbar=no, toolbar=no, scrollbars=yes, resizable=no, width=600, height=400");
    
    if (popup) 
        return false; 
    else
        return true;
}

function openMenue(  )
{
    popup = window.open("../menu.html", "noName", "left=200, top=160, status=no, statusbar=no, toolbar=no, scrollbars=yes, resizable=no, width=600, height=400");
    
    if (popup) 
        return false; 
    else
        return true;
}

