function compareDate(date1,date2)
{
    var regexp=/^(\d{1,4})[-|\.]{1}(\d{1,2})[-|\.]{1}(\d{1,2})$/;
    var monthDays=[0,3,0,1,0,1,0,0,1,0,0,1];
    regexp.test(date1);
    var date1Year=RegExp.$1;
    var date1Month=RegExp.$2;
    var date1Day=RegExp.$3;

    regexp.test(date2);
    var date2Year=RegExp.$1;
    var date2Month=RegExp.$2;
    var date2Day=RegExp.$3;

    firstDate=new Date(date1Year,date1Month,date1Day);
    secondDate=new Date(date2Year,date2Month,date2Day);

    result=Math.floor((secondDate.getTime()-firstDate.getTime())/(1000*3600*24));
      for(j=date1Year;j<=date2Year;j++){
       
        for(i=date1Month-1;i<date2Month;i++){
			//alert(i + "|" +  monthDays[i-1]);
			
            result=result-monthDays[i]  ;
			 if(isLeapYear(j) && i == 2){
			   result=result+1;
			}
        }
    }
    return result;
}

//判断年份是否是闰年

function isLeapYear(year){
    
    if(year%400==0){
        return false;    
    }else if(year%4==0){
        return true;
    }else{
        return false;
    }
}


function y2k(number) { return (number < 1000) ? number + 1900 : number; }

     var now = new Date();
     var dd = now.getDate() , mt = now.getMonth() + 1 , yy = y2k(now.getYear()) , weekVal = now.getDay();

        if (weekVal==0)
       msg1="星期日";
    else if (weekVal==1)
        msg1="星期一";
    else if (weekVal==2)
        msg1="星期二";
    else if (weekVal==3)
            msg1="星期三";
    else if (weekVal==4)
            msg1="星期四";
    else if (weekVal==5)
            msg1="星期五";
    else if (weekVal==6)
            msg1="星期六";

//var Days = compareDate(  now.getYear() + "-" + [now.getMonth()+1] + "-" + now.getDate() , "2008-5-16"  );



document.write('<div class="wrap1"><div class="top1"></div><div class="top2"><div class="top3">·中国权威文化产业门户 ·全国文化产业项目服务工程唯一发布平台 ·<a href="http://www.cnci.gov.cn/wenpeng.aspx" target="_blank"><font color="#ffffff">中国文化产业网又名<font style="font-size:16px; ">文鹏网</font></font></a></div><div class="top4"><a href="http://www.cnci.gov.cn"><font color="#FFFFFF">首页</font></a><!--·<a href="http://www.cnci.gov.cn:1980/u8/www.cnci.gov.cn/"><font color="#FFFFFF">繁体</font></a>-->·<a href="http://www.cnci.gov.cn"><font color="#FFFFFF">简体</font></a>·<a href="http://e.cnci.gov.cn/"><font color="#FFFFFF">English</font></a>·<a href="http://www.cnci.gov.cn" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'http://www.cnci.gov.cn/\');return(false);" style="behavior: url(#default#homepage)"><font color="#FFFFFF">设为首页</font></a>·<a href="javascript:window.external.addFavorite(document.URL , \'中国文化产业网\');"><font color="#FFFFFF">添加收藏</font></a></div></div><div class="top5"></div></div>');

document.write('<div class="wrap1"><div class="menu1"></div><div style="float:left;"><a href="/"><img src="/images/logo.gif" border="0" /></a></div><div class="menu2"><div style="margin:20px 0 0 0"><div class="listmenu "><li><a href="http://trade.cnci.gov.cn/"><font color="red">交易中心</font></a><br /><a href="http://trade.cnci.gov.cn/cn_p_list.aspx?product_type=3bFinp1EG%2fs%3d">我要采购</a><br /><a href="http://trade.cnci.gov.cn/cn_p_list.aspx?product_type=5xEciSTPHLY%3d">我要销售</a>			</li>		  	  <li><a href="http://trade.cnci.gov.cn/cn_i_list.aspx">我要投资</a><br /><a href="http://trade.cnci.gov.cn/cn_v_list.aspx">我要融资</a><br /><a href="http://www.cnicif.com/">文 博 会</a></li>	<li><a href="/news/0/List_1.htm">综合要闻</a><br /><a href="/news/10/49/">研究中心</a><br /><a href="/news/10/15/">示范基地</a></li><li><a href="/news/10/13/">产业政策</a><br /><a href="/news/10/16/">产业案例</a><br /><a href="/news/16/">动漫游戏</a></li><li><a href="/news/12/">传媒出版</a><br /><a href="/news/14/">娱乐演艺</a><br /><a href="/news/13/">影视音像</a></li><li>	<a href="/Crafts/">工艺美术</a><br /><a href="/shuhua/">书画艺术</a><br /><a href="/news/19/">创意设计</a></li><li><a href="/shangbao/">报网联动</a><br /><a href="http://forum.cnci.gov.cn/">文鹏社区</a><br /><a href="/specail/cncisp/">独家策划</a></li></div><!--<div style="text-align:center"><script language="javascript" src="js/date2008.js"></script></div><div align="center"><br /><a href="/http://weather.news.sina.com.cn/" target="_blank">全国天气预报</a><!--<iframe src="http://www.7stk.com/1/6/sina.htm" frameborder="0" width="117" height="37" marginheight="0" marginwidth="0" scrolling="no"></iframe>--><!--</div>--><DIV style="FLOAT: right; line-height:22px" align="center">');

document.write(yy+"年"+mt+"月"+dd+"日");
document.write(" <b>"+msg1+"</b><br>");
document.write('<a href="http://weather.news.sina.com.cn/" target="_blank">全国天气预报</a>');
document.write('<br>欢迎参加<strong>第五届文博会</strong>');

//if (Days>0)
//{
//document.write('<br>距<strong>第四届文博会</strong>还有<font style="font-size: x-large;font-weight: bold;color: #FF0000;">' + Days + '</font>天');
//}
//else
//{document.write('<br><strong>第四届文博会</strong>开幕第<font style="font-size: x-large;font-weight: bold;color: #FF0000;">4</font>天');}

document.write('</DIV></div></div><div class="menu3"></div><div></div></div>');