// ----------------------------------------------------
// funtion footer 
// © Bias 2010 
//
// simple templates for the footer in all pages
//
// ----------------------------------------------------
function footer() 
{
document.write("<table width='800' border='0' align='center' cellpadding='2' cellspacing='0' bgcolor='#018D7C'>");
document.write("<tr>");
document.write("<td>");

//get rid of style23 !!!
document.write("<div align='center' Style='font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; color: white'>");

document.write("&copy; ");

// change here for company name
document.write("Jarrah House 2006");

document.write("&nbsp;&nbsp; ");
document.write("<span class='style1'>&#8226;</span>");
document.write("&nbsp;&nbsp; ");
document.write("Tel. ");

// change here for telephone number
document.write("02 9661 6555");

document.write("&nbsp; &middot; &nbsp;");
document.write("Fax ");


// change here for fax number
document.write("02 9661 6595");

document.write(" <span class='style1'>&nbsp;&nbsp;&#8226;</span> &nbsp;&nbsp;");
document.write("<a href='PrivacyPolicy.htm' class='style23'>Privacy Policy</a>");

document.write("</div>");
document.write("</td>");
document.write("</tr>");
document.write("</table>");
}
