QUOTE(skyhawk133 @ 4 Sep, 2007 - 10:10 AM)

Want something explained in a tutorial, post your request here and someone will try to make a tutorial.
Hello, I'm new to forums in general. Normally I work it out using tuts or books. I hope you can help me ([i]I'm kinda at the end of my tether)
I am stuck on how I can display on my index.cfm page, that when a button is clicked it will display the appropriate page in an area on the index page. I have inserted a <div id="content"></div> and have linked the buttons to the appropriate pages but alas have had no luck.
Can you suggest a tutorial or anything at all please.
Here is what I have so far
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>WPCC</title>
<style type="text/css">
<!--
body {
background-image: url(pineBkgrnd.jpg);
background-color: #FFFFFF;
}
body,td,th {
color: #336600;
}
.style8 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: xx-large; color: #FFFFFF; }
#content {
position:absolute;
width:730px;
height:21px;
z-index:2;
left: 229px;
top: 241px;
}
#navigation {
position:absolute;
width:200px;
height:606px;
z-index:3;
left: 27px;
top: 240px;
}
#banner {
position:absolute;
width:797px;
height:203px;
z-index:2;
left: 29px;
top: 24px;
}
.style16 {font-size: large}
.style21 {font-size: x-small}
.style22 {font-size: medium}
.style25 {font-size: xx-small; }
.style27 {color: #669933; font-size: small; }
-->
</style>
<script language="JavaScript" type="text/javascript" src="ajax.js"></script>
</head>
<body>
<div id="navigation">
<cfinclude template="Navigation.cfm"></div>
<div id="content"></div>
<div id="banner">
<table width="800" align="left">
<tr>
<th width="169" height="50" align="center" valign="middle" background="wollemia-nobilis-4-300.jpg" scope="row">
<h1 align="center" class="style8"><span class="style16">W</span></h1>
<h1 align="center" class="style8"><span class="style16">P</span></h1>
<h1 align="center" class="style8"><span class="style16">C</span></h1>
<h1 align="center" class="style8"> <span class="style16">C</span></h1></th>
<td width="585" valign="top"><p align="center" class="style21"><span class="style16">Wollomi Pine Conservation Company </span></p>
<p align="center" class="style22">1 Wollomi Pine Road, Wollomi Pine Forrest, NSW Australia</p>
<p align="center" class="style22">Tel: 02 9567 8900 Fax: 9567 8911 </p>
<p align="center" class="style25"><span class="style27">Our mission is to encourage persons from all walks of life to have a piece of history</span></p>
<p align="center" class="style21"><span class="style27">"If we all planted one in our backyard the planet could repair itself at a faster rate " <em>The Green Magazine </em></span></p> </td>
</tr>
</table></div>
</body>
</html>
Thanking you in advance for any kind of help you can give me.