// JavaScript Document 一闪即逝的顶部广告
function ShowLayer()
{
 document.all.FlatLayer.style.display="block";
}
function CloseLayer()
{
 document.all.FlatLayer.style.display="none";
}
ShowLayer();
setTimeout("CloseLayer()",5000);//这里是广告显示的时间,以毫秒为单位，1秒=1000毫秒