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="/cn/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="/cn/index.htm?cntry_code='+cntry_id_param+'" target="_top">首页</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/cn/products/index.htm?cntry_code='+cntry_id_param+'">产品目录</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/cn/resources/index.htm?cntry_code='+cntry_id_param+'">工具与资源</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="/cn/about/index.htm">关于我们</a><br />';
//footerHTML += '<a href="/cn/site_map.htm?cntry_code='+cntry_id_param+'">站点地图</a><br />';
footerHTML += '<a href="/cn/terms_conditions.htm">法律条款</a><br />';
footerHTML += '<a href="http://www.ge.com/">合作</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="http://www.ge.com/en/company/investor/">投资方信息</a>&nbsp;&nbsp;|&nbsp;&nbsp;';
footerHTML += '<a href="http://www.ge.com/en/ge/accessibility/">阅读声明</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; '+curYear+' General Electric Company 通用电气公司版权所有</div>';
footerHTML += '</div>';
document.writeln(footerHTML);

