function showDate(){
	var enabled = 0; today = new Date();
	var day; var date;
	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 = "星期六"

	date = "" + (today.getYear()) + "年" + (today.getMonth() + 1 ) + "月" + today.getDate() + "日  " + day +"";
	document.write(date);
}

function showHeader(URL){
document.writeln ("<table width=\"778\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">")
document.writeln ("<tr>")
document.writeln ("<td height=\"188\"><iframe src=\"http://www.hisme.gov.cn/top800top_menu.html\" scrolling=\"No\" width=\"778px\" height=\"188px\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" ></iframe></td>")
document.writeln ("</tr>")
document.writeln ("</table>")
}

function showBottom(URL){
document.writeln ("<table align=\"center\" width=\"778\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#FFFFFF\">");
document.writeln ("<tr>");
document.writeln ("<td height=\"29\" background=\""+URL+"html/images/ny_t_bj3.jpg\"><div align=\"center\"><a href=\""+URL+"lxwm.php\" class=\"link_l14C\">联系我们</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\""+URL+"ggfw.php\" class=\"link_l14C\">广告服务</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href=\""+URL+"wzsm.php\" class=\"link_l14C\">网站声明</a>&nbsp;&nbsp;&nbsp;<a href=\""+URL+"\" class=\"link_l14C\">网站地图</a></div></td>");
document.writeln ("</tr>");
document.writeln ("<tr>");
document.writeln ("<td height=\"100\" background=\""+URL+"html/images/ny_t_bj4.jpg\"><div align=\"center\">");
document.writeln ("<table width=\"550\" border=\"0\" align=\"right\" cellpadding=\"0\" cellspacing=\"0\">");
document.writeln ("<tr>");
document.writeln ("<td width=\"300\"><div align=\"left\"><a href=\"http://www.sme.gov.cn/web/assembly/action/browsePage.do?channelID=1088469178606\" >指导单位：中华人民共和国工业和信息化部中小企业司</a><br />");
document.writeln ("<a href=\"http://iitb.hainan.gov.cn/\" >主办单位：海南省工业和信息化厅</a><br />");
document.writeln ("<a href=\"http://www.hainan.gov.cn/code/V3/cxsm/\" >承办单位：海南信息岛技术服务中心</a><br />");
document.writeln ("<a href=\"http://www.miibeian.gov.cn/\" >琼ICP备09001425号</a></div></td>");
document.writeln ("<td width=\"213\"><div align=\"left\"><a href=\"http://www.haikou.cyberpolice.cn/\"><img src=\""+URL+"html/images/110.gif\" width=\"116\" height=\"56\" border=\"0\" /></a></div></td>");
document.writeln ("</tr>");
document.writeln ("</table>");
document.writeln ("<p>&nbsp;</p>");
document.writeln ("</div></td>");
document.writeln ("</tr>");
document.writeln ("</table>");
}
function showFontSizeSwitch(){
	document.write("字体：【<a href=\"javascript:doZoom(24)\">大</a> <a href=\"javascript:doZoom(16)\">中</a> <a href=\"javascript:doZoom(12)\">小</a>】\n");
}
function doZoom(size){
	//document.getElementById('neirongText').style.fontSize=size+'px'
	var   content   =   document.getElementById('neirongText');
	doChangeFontSize(content,size)
}
function doChangeFontSize(content,size){
	content.style.fontSize=size+'px';
	var all = content.all.length;
	if (all>0){
		for (var i=0; i <all; i++){
			if (typeof content.childNodes[i] != "undefined"){
				if (typeof content.childNodes[i].tagName != "undefined" && content.childNodes[i].tagName!="<BR>")
				{
					if (typeof content.childNodes[i]=="object"){
						doChangeFontSize(content.childNodes[i],size)
					}else{
						content.childNodes[i].style.fontSize=size+'px';
					}
				}
			}
		}
	}else{
		content.style.fontSize=size+'px';
	}
}
function imgzoom(img){
	var a=new Image();
	a.src=img.src
	if(a.width > 750){
		img.style.width=750;
	}
	return false;
}