/* ---------------------------------------------------------------------- *\
Function:getFooter
Description: 获取页面footer信息
Usage:getFooter()
Arguments:none
Return:sFooter - footer信息
\* ---------------------------------------------------------------------- */ 
function getFooter(){
	var sFooter = "<table width='100%' border='0' cellspacing='0' cellpadding='0'> <tr> <td height='37' align='left' class='bottom'>© Disney. All rights reserved<br />本网站由迪士尼授权上海灵动提供 ICP证号: B2-20040338</td> <td id='grey_linkbottom' align='right'><a href='http://www.disney.com.cn/terms/index.html'>法律条款</a> | <a href='http://www.disney.com.cn/privacy/index.html'>隐私条例</a> | <a href='http://www.disney.com.cn/sitemap/index.html'>网站地图</a> | <a href='http://www.disney.com.cn/help/index.html'>使用说明</a></td></tr></table>";
	return sFooter;
}