//***Power By Yinhexi:2011-3-20***//

/*BEGIN:Yinhexi:2011-3-20*/
function YhxNotice()
{
var Notice="<img src='../images/yhxnotice.gif' align='absmiddle'>尊敬的广大客户请注意，近期本公司将对模版站进行部分功能和界面方面的优化！金盾科技，竭诚为您服务！";
var NewDiv=document.createElement("div");
NewDiv.setAttribute('id','yhxnotice');
NewDiv.style.position="absolute";
NewDiv.style.top="0";
NewDiv.style.right="0";
NewDiv.style.background="#fff";
NewDiv.style.color="#ff0000";
NewDiv.style.textAlign="right";
NewDiv.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=3,opacity=25,finishOpacity=75)";
NewDiv.style.opacity="0.6";
NewDiv.style.width="auto";
NewDiv.style.height="20px";
NewDiv.style.padding="2px";
NewDiv.style.zIndex="100";
NewDiv.innerHTML=Notice;
document.body.appendChild(NewDiv);
}

function ChkTime()
{
var date=new Date();
var hour="";
hour=date.getHours();
if(hour==1 || hour==0) {YhxNotice();}
}

window.onload=ChkTime;
/*END*/
