function Display_Header()
{
  document.writeln('<center>');
  document.writeln('<img src="images/cp_banner2.gif"><br>');
  document.writeln('</center>');

}


function Display_Header_Black()
{
  document.writeln('<center>');
  document.writeln('<img src="images/cp_banner1.gif"><br>');
  document.writeln('</center>');
}


function Display_Footer()
{
  document.writeln('<center>');
  document.writeln('<br>');
  document.writeln('<font size=-2>Copyright 2010');
  document.writeln('<a href="http://resonatingmedia.com"');
  document.writeln('target="_blank">Resonating Media</a></font>');
  document.writeln('</center>');

}



function Display_Menu()
{
document.writeln('<br><br><br>');
document.writeln('<table>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="home.html">About Us</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="purchase.html">Pricing</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="findus.html">Contact Us</a><br></b>');
document.writeln('</td></tr>');
// document.writeln('<a href="location.html">Location</a><br>');
// document.writeln('<br>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="calendar.html">Calendar</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="nutrition.html">Nutrition</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="workouts.html">Work Outs</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="news.html">In The News</a><br></b>');
document.writeln('</td></tr>');
document.writeln('<tr><td width=130 height=50 background=images/green_plate_small.jpg valign=center align=center>');
document.writeln('<b><a href="events.php">Events</a><br></b>');
document.writeln('</td></tr>');
// document.writeln('<a href="findus.html">Contact Us</a><br>');
// document.writeln('<br>');
// document.writeln('<a href="faqs.html">FAQ</a><br>');
// document.writeln('<br>');
// document.writeln('<a href="links.html">Links</a><br>');
document.writeln('</table>');
}


function Display_Tabs(tab_num)
{
    document.writeln('<br>');
    document.writeln('<center>');
    document.writeln('<table width=540>');
    document.writeln('<tr>');
    if (tab_num == 1)
    document.writeln('<td align=center background="images/tab_1.gif" width=180 height=62><a href="option1.html">Option 1</a></td>');
    else
    document.writeln('<td align=center background="images/tab_3.gif" width=180 height=62><a href="option1.html">Option 1</a></td>');
    if (tab_num == 2)
    document.writeln('<td align=center background="images/tab_1.gif" width=180 height=62><a href="option2.html">Option 2</a></td>');
    else
    document.writeln('<td align=center background="images/tab_3.gif" width=180 height=62><a href="option2.html">Option 2</a></td>');
    if (tab_num == 3)
document.writeln('<td align=center background="images/tab_1.gif" width=180 height=62><a href="option3.html">Option 3</a></td>');
    else
    document.writeln('<td align=center background="images/tab_3.gif" width=180 height=62><a href="option3.html">Option 3</a></td>');

    document.writeln('</tr>');
    document.writeln('</table>');
    document.writeln('</center>');
}

