function get_full_year(d) {
	yr = d.getYear();
	if (yr < 1000) {
	 	yr+=1900;
	}
	return yr;
}

var today=new Date(); 
var thisYear = get_full_year(today);
	
var footerTag = "";

footerTag += '<table width="100%" border="0" cellpadding="0" cellspacing="0">';
footerTag += '<tr bgcolor="#94A9CF">';
footerTag += '<td height="1" colspan="2" bgcolor="#FFFFFF"><img src="from_bravo/images/spacer.gif" width="1" height="1" /></td>';
footerTag += '</tr>';
footerTag += '<tr bgcolor="#94A9CF">';
footerTag += '<td height="25"><div align="right"><span class="footercopy"><a href="/careers.html" style="text-decoration:none; color:#ffffff">Careers</a> | <a href="/contact_us.html" style="text-decoration:none; color:#ffffff">Contact Us</a> | <a href="/privacy.html" style="text-decoration:none; color:#ffffff">Privacy Policy</a> | <strong>&copy;</strong> ' + thisYear + ' Fabrinet</span></div></td>';
footerTag += '<td width=5>&nbsp;</td>';
footerTag += '</tr>';
footerTag += '</table>';

document.write(footerTag);
