function doPrint() {
var str="<html>";
var content;
var css;
var strAdBegin="<!--NEWSZW_HZH_BEGIN-->";
var strAdEnd="<!--NEWSZW_HZH_END-->";
var strFontSize='【<A href="javascript:doZoom(16)">大</A> <A href="javascript:doZoom(14)">中</A> <A href="javascript:doZoom(12)">小</A>】'
var strdoPrint="doPrint()";
var strTmp;
str =	'<meta http-equiv="Content-Type" content="text/html; charset=gb2312">';
str +=	'<link href="http://www.ce.cn/books/css/book2005.css" rel="stylesheet" type="text/css">';
str +=	'<title>'+document.title+'</title>';
str +=	"<body bgcolor=#ffffff topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onLoad='window.print()'>";
str +=	"<table width=570 border=0 cellpadding=0 cellspacing=0 align=center>";
str +=	"<tr><td height='5'></td></tr>";
str +=	"<tr>";
str +=	"<td width=10></td>";
str +=	"<td align='left'>";
str +=	"<a href=\"http://www.ce.cn\"><img src=\"http://www.ce.cn/images/logo.gif\" vspace=3 border=0></a>";
str +=	"</td>";
str +=	"</tr>";
str +=	"<tr>";
str +=	"<td height=5></td>";
str +=	"</tr>";
str +=	"<tr bgcolor=#2D4B9B height=20>";
str +=	"<td width=10></td>";
str +=	"<td class='wztx'><font color=#FFFFFF>" + "&nbsp;&nbsp;" + displayDate() + "</font></td>";
str +=	"</tr>";
str +=	"</table>";
str +=  "<table width=570 bgcolor=#EDF4FF border=0 cellpadding=0 cellspacing=0 align=center><tr><td>";
str +=	"<table width=550 border=0 cellpadding=0 cellspacing=0 align=center>";
str +=	"<tr><td>";
content=document.getElementById('article').innerHTML;
if(content.indexOf(strAdBegin)!=-1){
	str +=content.substr(0,content.indexOf(strAdBegin));
	strTmp=content.substr(content.indexOf(strAdEnd)+strAdEnd.length, content.length);
}
else{
	strTmp=content;
}
str += strTmp;
str +=	"</td></tr></table>";
str +=	"</td></tr></table>";
str +=	"<table width=570 border=0 align=center cellpadding=0 cellspacing=0 bgcolor=#000C3F>";
str +=	"<tr><td height=50 align=center><font color=#FFFFFF>";
str +=  "&copy; 版权所有 中国经济网&nbsp;&nbsp;<a href='http://www.ce.cn/' target='_blank'><font color=#FFFFFF>www.ce.cn</font></a>"
str +=	"</font></td>";
str +=	"</tr>";
str +=	"</table>";
str +=	"</body></html>";
document.write(str);
document.close();
}

function getinfo(){
document.formarticle.allinfo.value=escape(article.outerHTML);
document.formarticle.caption.value=article_caption.innerHTML;
document.formarticle.location.value=this.location;
return true;
}
function openfill(){
	getinfo();
document.formarticle.submit();
return true;
}


function displayWeek() {
today = new Date();
var day;
if(today.getDay()==0) day = "星期日"
if(today.getDay()==1) day = "星期一"
if(today.getDay()==2) day = "星期二"
if(today.getDay()==3) day = "星期三"
if(today.getDay()==4) day = "星期四"
if(today.getDay()==5) day = "星期五"
if(today.getDay()==6) day = "星期六"
TheWeek = day;
return (TheWeek);
}
function displayMonth() {
today = new Date();
var month;
if(today.getMonth()==0) month = "一月"
if(today.getMonth()==1) month = "二月"
if(today.getMonth()==2) month = "三月"
if(today.getMonth()==3) month = "四月"
if(today.getMonth()==4) month = "五月"
if(today.getMonth()==5) month = "六月"
if(today.getMonth()==6) month = "七月"
if(today.getMonth()==7) month = "八月"
if(today.getMonth()==8) month = "九月"
if(today.getMonth()==9) month = "十月"
if(today.getMonth()==10) month = "十一月"
if(today.getMonth()==11) month = "十二月"
TheMonth = month;
return (TheMonth);
}
function displayDate() {
Todays = new Date();
week = displayWeek();
//theMonth = displayMonth();
month = Todays.getMonth()+ 1;
day = Todays.getDate();
year = Todays.getYear();
TheDate = Date();
//TheDate = year + "年" + month + "月" + day + "日 " + week + ;
return (TheDate);
}