


function doPrint(){
var str="<html>\n<meta http-equiv='content-type' content='text/html; charset=gb2312'>";
var article;
var css;
var strdoPrint="doPrint()";
var strTmp;

	css="<link href='print.css' rel='stylesheet' type='text/css'>"
	str +=	css;
	str +=	'<meta http-equiv="content-type" content="text/html; charset=gb2312">';
	str +=	'<title>'+document.title+'</title>';
	str +=	"<body bgcolor=#ffffff topmargin=5 leftmargin=5 marginheight=5 marginwidth=5 onLoad='window.print()'>";
	str +=	"<table width=800 border=0 cellspacing=0 cellpadding=0 align=center><tr><td align=center>";
	
	article=document.getElementById('article').innerHTML;
	 
		strTmp=article
	 
	str +=strTmp
	// str += window.location.href
	str +=	"</td></tr></table>";
	str +=	"</body></html>";
	document.write(str);
	document.close();
}

function open_win(theurl) 
{
	var props;
  props=window.open(theurl, 'poppage', 'toolbars=0, scrollbars=1, location=0, statusbars=1, menubars=1, resizable=1, width=600, height=400, left=400,top = 100');
  props.focus();
  
}
