<?php
function head($titel){
    echo '
    <h5>'.$titel.'</h5>
    <div class="borderbox">';
}

function foot(){
    echo'</div><br />';
}

function menuehead($titel){
    echo'<h5>'.$titel.'</h5>
    <div class="borderbox">';
}

function menuefoot(){
    echo'</div><br />';
}
?>