﻿// JScript File


function topHeader(path) { 
document.writeln('      <div id="nav"> ');
document.writeln('              <table cellpadding="0" cellspacing="0" style="width:100%">');
document.writeln('                  <tr>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('                        <td ><a href="' + path + 'services.html">SERVICES</a></td>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('                        <td ><a href="' + path + 'insurance.html">INSURANCE</a></td>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('                        <td ><a href="' + path + 'locations.html">LOCATIONS</a></td>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('                        <td ><a href="' + path + 'aboutus.html">ABOUT US</a></td>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('        	            <td ><a href="' + path + 'careers.html">CAREERS</a></td>');
document.writeln('                        <td><img alt="" src="' + path + 'images/menu_seperator.gif" /></td>');
document.writeln('                     </tr>');
document.writeln('                </table>');
document.writeln('            </div>');

}

function footer(path) { 
    document.writeln('              <div id="footer">');
	document.writeln('	                <div id="gravitate">&copy; 2010&nbsp; DR Walk-In Medical Care</div>');
    document.writeln('                  <a href="' + path + 'index.html">home</a>&nbsp; |&nbsp; ');
    document.writeln('                  <a href="' + path + 'faqs.html">faqs</a>&nbsp; |&nbsp; ');
    document.writeln('                  <a href="' + path + 'paypolicy.html">payment policy</a>&nbsp; |&nbsp; ');
    document.writeln('                  <a href="' + path + 'privacy.html">privacy practices</a>&nbsp; |&nbsp; ');
    document.writeln('                  <a href="' + path + 'contactus.html">contact us</a>');
    document.writeln('              </div> ');
    
    }
