curDate = new Date();
var curYear = curDate.getFullYear();

//build styles to write to page
//so we maintain COMPLETE autonomy, fonts are fixed pt size
footerCSS = '<style type="text/css">';
footerCSS += '#footerDiv1 { padding:13px 0; font-size:8pt; font-family:Arial,Helvetica,sans-serif; font-weight:normal; color:#666666;}';
footerCSS += '#footerDiv1 a, #footerDiv1 a:link, #footerDiv1 a:active, #footerDiv1 a:visited { font-size:8pt; color:#666666; font-family:Arial,Helvetica,sans-serif; font-weight:normal; text-decoration:none; }';
footerCSS += '#footerDiv1 a:hover { font-size:8pt; color:#666666; font-family:Arial,Helvetica,sans-serif; font-weight:normal; text-decoration:underline;}';
footerCSS += '#footerDiv2 { color:#666666; font-size:8pt; font-family:Arial,Helvetica,sans-serif; font-weight:normal; }';
footerCSS += '#footerDiv3 { float:left; padding:13px 6px 13px 10px; color:#666666; font-size:8pt; font-family:Arial,Helvetica,sans-serif; font-weight:normal; }';
footerCSS += '#footerDiv3 a, #footerDiv3 a:link, #footerDiv3 a:active, #footerDiv3 a:visited { font-size:8pt; color:#3b73b9; font-family:Arial,Helvetica,sans-serif; font-weight:normal; text-decoration:underline; }';
footerCSS += '#footerDiv4 { padding: 11px 0; }';
footerCSS += '#footerDiv3 a:hover { color:#89abd5; }';
footerCSS += '</style>';
document.writeln(footerCSS);

//build html to write to page
//footerHTML =  '<div style="width:730px;">';

footerHTML = '<table width="730" cellpadding="0" cellspacing="0" border="0" style="border-top:1px solid #ccc;">';
footerHTML += '<tr>';
footerHTML += '<td width="115" valign="middle">';
footerHTML += '<a target="_top" href="http://www.ge.com/olympicgames/"><img width="87" height="49" border="0" alt="GE - Olympic Worldwide Partner" src="/apo/imgs/olympic_ge_logos_footer.gif" /></a>';
footerHTML += '</td>';
footerHTML += '<td width="615" valign="top" style="padding-right:10px;">';
footerHTML += '<div id="footerDiv1">';
footerHTML += '<a href="/apo/index.htm?cntry_code='+cntry_id_param+'" target="_top">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/apo/products/index.htm?cntry_code='+cntry_id_param+'">Products</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/apo/resources/index.htm?cntry_code='+cntry_id_param+'">Resources</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/apo/about/index.htm">About Us</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/apo/site_map.htm?cntry_code='+cntry_id_param+'">Site Map</a><br />';
footerHTML += '<a href="/apo/terms_conditions.htm">Terms & Conditions</a><br />';
footerHTML += '<a href="http://www.ge.com/">Corporate</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="http://www.ge.com/en/company/investor/">For Investors</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="http://www.ge.com/en/ge/accessibility/">Accessibility Statement</a>';
footerHTML += '</div>';
footerHTML += '</td>';
footerHTML += '</tr>';
footerHTML += '</table>';
footerHTML += '<div style="border-top: solid 1px #cccccc; padding: 2px 0; text-align: right;">';
footerHTML += '<div id="footerDiv2">&copy; Copyright '+curYear+' General Electric Company</div>';
footerHTML += '</div>';
document.writeln(footerHTML);

