There's not really an easy script... it depends on how you have your site laid out (Frames, etc) and how you want the script to work. In most cases it's simply a switch case where the page link sends a variable to a php script such as content.php
Content.php would generally be set up like this:
_GET($id)
switch($id)
{
case 1:include("url1"); break;
case 2:include("url2"); break;
default; break;
}
Repeat cases as necessary
And in the a href tag you would link to the script like this:
<a href="content.php?id=X>link</a>
where X=the id number used to reference which page will be called upon by content.php to deliver to the browser.
Example:
User Side:
content.php?id=1
Script Side:
case 1:include("home.html"); break;
This would send the page home.html to the browser window.
Sorry if that's a little confusing, but it's pretty self-explanatory after you use it a bit and get to understand the variables and how the coincide with the script.