// 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+"<div class='copyright'>Copyright 2011 HCL Infosystems Limited</div><div class='bottom-link'><a href='lan_company_page.htm'>ABOUT US</a> | <a href='lan_product_page.htm'>PRODUCTS</a> | <a href='lan_service_page.htm'>SERVICES</a> | <a href='lan_investor_page.htm'>INVESTORS</a> | <a href='lan_career_page.htm'>CAREERS </a> |<a href='lan_support_page.htm'> SUPPORT </a> | <a href='disclaimer.htm'>DISCLAIMER</a> | <a href='contactus.htm'>CONTACT US</a></div>"
document.write(f)
}

