function doHeader()
{
    document.write("<div id='header'>");
    document.write("<table cellpadding='0' cellspacing='0' width='800'>");
    document.write("<tr>");
    document.write("<td align='left' valign='top'><img src='Images/Layout/top_left.gif' alt='' width='8' border='0' /></td>");
    document.write("<td align='right' valign='top'><img src='Images/Layout/top_right.gif' alt='' width='8' border='0' /></td>");
    document.write("</tr>");
    document.write("<tr>");
    //document.write("<td colspan=\"2\" align='center'>Hornsby Spine Centre</td>");

    document.write("<td align='center' class=\"title\">Hornsby Spine Centre</td>");
    document.write("<td align='right' valign='top' class=\"address\">259 Pacific Highway<br \/>Hornsby, NSW 2077<br \/>ph: (02) 9482 1661</td>");
    
    document.write("</tr>");
    document.write("</table>");
    document.write("</div>");
}

function doFormHeader()
{
    document.write("<div id='header'>");
    document.write("<table cellpadding='0' cellspacing='0' width='800'>");
    document.write("<tr>");
    document.write("<td align='left' valign='top'><img src='Images/Layout/top_left.gif' alt='' width='8' border='0' /></td>");
    document.write("<td align='right' valign='top'><img src='Images/Layout/top_right.gif' alt='' width='8' border='0' /></td>");
    document.write("</tr>");
    document.write("<tr>");
    document.write("<td colspan=\"2\" align='center'>New Patient History Form</td>");
    document.write("</tr>");
    document.write("</table>");
    document.write("</div>");
}

function doFooter()
{
    document.write("<div id='footer'>");
    document.write("<table cellpadding='0' cellspacing='0' width='800' ><tr>");
    document.write("<td align='left' valign='bottom'><img src='Images/Layout/bottom_left.gif' alt='' width='8' border='0' /></td>");
    document.write("<td align='right' valign='bottom'><img src='Images/Layout/bottom_right.gif' alt='' width='8' border='0' /></td></tr>");
    document.write("</table>");
    document.write("<div style='background-color: Black;'><br />");
    document.write("XL2 Engineering Pty Ltd t/a Hornsby Spine Centre<br />");
    document.write("ACN: 077 164 240. ABN: 57 077 164 240.<br />");
    document.write("Website by Ian Hosken.<br /><br />");
    document.write("Last updated: 27/3/10");
    document.write("</div>");
    document.write("</div>");
}


function doMenu()
{
    var labels = new Array();
    var links = new Array();
    
    var arrayIndex = 0;

    labels[arrayIndex] = "Welcome";
    links[arrayIndex] = "index";
    arrayIndex++;

    labels[arrayIndex] = "Our Services";
    links[arrayIndex] = "services";
    arrayIndex++;

    labels[arrayIndex] = "What we treat";
    links[arrayIndex] = "treat";
    arrayIndex++;

    labels[arrayIndex] = "Staff Profiles";
    links[arrayIndex] = "staff";
    arrayIndex++;

    labels[arrayIndex] = "Techniques";
    links[arrayIndex] = "techniques";
    arrayIndex++;

    labels[arrayIndex] = "Testimonials";
    links[arrayIndex] = "testimonials";
    arrayIndex++;

    labels[arrayIndex] = "Opening Hours";
    links[arrayIndex] = "hours";
    arrayIndex++;

    labels[arrayIndex] = "Facilities";
    links[arrayIndex] = "facilities";
    arrayIndex++;

    labels[arrayIndex] = "Contact Us";
    links[arrayIndex] = "contactus";
    arrayIndex++;

    labels[arrayIndex] = "Fees";
    links[arrayIndex] = "fees";
    arrayIndex++;

    labels[arrayIndex] = "Links";
    links[arrayIndex] = "links";
    arrayIndex++;

    //Output code to construct menu
    document.write("<ul>");
    for (var i = 0; i < labels.length; i++) {
        document.write("<li><a href='" + links[i] + ".htm'>" + labels[i] + "</a></li>");
    }
    document.write("</ul>");

    //...and Logos
    document.write("<div align=\"center\" style=\"padding-top: 20px; font-size: 10px;\">");
    document.write("Hornsby Spine Centre is a proud member of the Chiropractor's Association of Australia<br />");
    document.write("<a href=\"http://www.chiropractors.asn.au/\" target=\"_blank\"><img src=\"Images/Logos/caa_logo_vert.gif\" alt=\"Chiropractors' Association of Australia\" width=\"56\" height=\"95\" style=\"margin: 10px 0px 10px 0px;\" border=\"0\" /></a>");
    document.write("<br />Hornsby Spine Centre formerly known as Action Potential Health Care<br />");
    document.write("<img src='Images/Logos/ap_logo.gif' alt='' width='100' style='padding-top: 10px;' border='0' />");
    document.write("</div>");
}