// JavaScript Document

//從頁頭向下推展開廣告

setTimeout("close_chk_show()",30000);


function show_it(){

var anim = function(){
n += 3;
if(n >= 300){
document.getElementById('noticediv').style.marginTop = "0";
window.clearInterval(t1);
}
else{
document.getElementById('noticediv').style.marginTop = "-"+(300 - n)+"px";
}
}
var n=0;
var t1 = window.setInterval(anim,20);

}



function close_chk_show(){

  var anim = function(){
   n += 3;
   if(n >= 300){
     document.getElementById('noticediv').style.marginTop = "-300px";
     window.clearInterval(t1);
     hidebanner();
   }
   else{
     document.getElementById('noticediv').style.marginTop = "-"+ n +"px";
   }
 };
 var n=0;
 var t1 = window.setInterval(anim,20);
}

function showbanner()
{
	document.getElementById('noticediv').style.display = "block";
}
function hidebanner()
{
document.getElementById('noticediv').style.display = "none";
}