My site has a one <div> for the header, one for navigation-panel and one for the content.
For the navigation-links i use
<p class="blue"><label onclick="goFor('test')"> -> TEST! <- </label> </p>
and my JS:
function goFor(destination) 
{ 
    document.getElementById("content").load(destination+'.php'); 
}
in this case, the content-div should change to the file "test.php".
but Firebug says: document.getElementById(...).load is not a function 
what am i doing wrong?