function printOddmotor()
{
  // print oddmotor.com with colors
  
  var aryColor = new Array('#0000ff', '#ff00ff', '#800080', '#00ff00', '#008000', 'black', '#ff0000', '#0000ff', '#008000');
  var aryOddmotor = new Array('O', 'd', 'd', 'm','o','t','o','r','.com');
  
  document.write("<b>");
  for (var i = 0; i < aryColor.length; i++)
  {
    document.write("<font color=" + aryColor[i] + ">" + aryOddmotor[i] + "</font>");
  }
  document.write("</b>");
}

function printCopyright()
{
    var strCopyright, dirHomePage, dirInclude;    
    
    dirHomePage = "http://www.holdsure.com/";
    dirInclude = "http://www.holdsure.com/include/html/";
    
    strCopyright = "<font face='Arial' color='#000000' size=-2>";
    strCopyright += "<a href=" + dirHomePage + ">Home Page</a>, ";
    strCopyright += "<a href=" + dirInclude + "contacts.htm>Contact Information</a>, ";
    strCopyright += "<a href=" + dirInclude + "aboutus.htm>About the Company</a>, ";
    strCopyright += "<a href=" + dirInclude + "agency.htm>Agency Area</a><br>";
    strCopyright += "&copy;2002-2006 Berkshire Hathaway International Insurance Limited, All rights reserved.<br>";
    strCopyright += "Insurance provided by Berkshire Hathaway International Insurance Limited trading as Holdsure Motor Policies,<br>";
    strCopyright += "Enterprise Motor Policies, www.studentcover.com, and ";
    
    document.write(strCopyright);    
    printOddmotor();  // function call to print oddmotor logo
    
    strCopyright = ", All rights reserved.<br>";
    strCopyright += "Registered in England and Wales, Company Number 3230337.<br>";
    strCopyright += "<a href=" + dirInclude + "Tos_hold.htm>Terms of Service</a>, ";
    strCopyright += "<a href=" + dirInclude + "stprvpol.htm>Privacy Policy</a>, ";
    strCopyright += "e-mail <a href='mailto: webmaster@nationalindemnity.com'>Webmaster</a>";
    strCopyright += "</font>";
    
    document.write(strCopyright);
}

function printOddmotorCopyright()
{
    var strCopyright;   

    strCopyright = "&nbsp;Copyright &copy;2002-2006  ";
		strCopyright += "Berkshire Hathaway International Insurance Limited, All rights reserved.&nbsp;&nbsp;";
		strCopyright += "Insurance provided by Berkshire Hathaway International Insurance Limited trading as ";
		strCopyright += "Holdsure Motor Policies, Enterprise Motor Policies, www.studentcover.com, and ";			
 
    document.write(strCopyright);    
    printOddmotor();  // function call to print oddmotor logo    
     
    strCopyright = "<br>Registered in England and Wales, Company Number 3230337.&nbsp;&nbsp;";
		strCopyright += "<a href='http://www.holdsure.com/include/html/stprvpol.htm'>Privacy Policy</a>";
    document.write(strCopyright); 
}