/*
	打印头部
*/
function PrintHeader( strTitle )
{
	/*
		strTitle	- 标题，例如：“防盗链专家简介”
	*/
	var strHtml = ""
	+ "<table border=0 width=100%>"
	+ "  <tr>"
	+ "    <td height=25><a href=\"http://www.fangdaolian.com/\" target=_blank style=\"color:#000000;text-decoration:none;\"><font face=Verdana size=5><b><font color=\"#FF9900\">V</font>irtual<font color=\"#FF9900\">W</font>all</b></font> <font color=AAAAAA size=3><b><i>防盗链专家</i></b></font></td>"
	+ "    <td align=right valign=bottom>"
	+ ( -1 != location.href.indexOf( "http://" ) ? "<a href=\"http://www.fangdaolian.com/zhcn/support.asp\">线上支持中心</a> <b><font style=\"font-size:16px;\">&raquo;</font></b> " : "" )
	+ strTitle
	+ "</td>"
	+ "  </tr>"
	+ "  <tr>"
	+ "    <td colspan=2><hr></td>"
	+ "  </tr>"
	+ "  <tr>"
	+ "    <td colspan=2 height=10 valign=top></td>"
	+ "  </tr>"
	+ "</table>";
	
	document.write( strHtml );
}