document.getElementById('scriptholder').innerHTML='\
\
\
\
\
\
\
\

上海培训学习 \
一周精选课程
×\
\
\
';
var timer;
function show_pop()
{
var MsgPop=document.getElementById('winpop');
MsgPop.style.height=0;
timer=setInterval('changeH(4)',10);
}
function hid_pop()
{
var MsgPop=document.getElementById('winpop');
MsgPop.style.height=0;
MsgPop.style.display='none';
}
function changeH(addH)
{
var MsgPop=document.getElementById('winpop');
var popH=parseInt(MsgPop.style.height||MsgPop.currentStyle.height);
if(popH+addH<=290)
{
MsgPop.style.height=(popH+addH).toString()+'px';
MsgPop.style.display='block';
}
else
clearInterval(timer);
}
window.onload=function() {
setTimeout("show_pop()",1000);
}