// JavaScript Document

function pyear()
{
var curdate = new Date()
var year = curdate.getYear()
if (year < 2000)
year = year + 1900;
document.write(year)
}


function footer()
{
f="";
f=f+"<table width='100%' border='0' cellspacing='0' cellpadding='0' class='text-footer'><tr><td width='11%'><a href='terms-conditions.html' class='text-footer'>Terms &amp; Conditions</a> </td><td width='1%'>|</td><td width='25%'><a href='privacy-policy.html' class='text-footer'>Privacy Policy</a></td><td width='61%'> Copyright © <script type='text/javascript'>pyear()</script> TDI Infrastructure Ltd. All Rights Reserved</td><td width='2%'></td></tr></table>"
document.write(f)
}
