Add: NingCheng County, Inner Mongolia Province, China.
var winHeight=200;
var timer=null;
function show(){
document.getElementById("popWin").style.display="block";
timer=setInterval("lift(5)",2);
}
function hid(){
timer=setInterval("lift(-5)",2);
}
function lift(n) {
var w=document.getElementById("popWin");
var h=parseInt(w.style.height||w.currentStyle.height);
if (h0 || h>1 && n<0){
w.style.height=(h+n).toString()+"px";
}
else
{
w.style.display=(n>0?"block":"none");
clearInterval(timer);
}
}
window.onload=function(){
setTimeout("show()",1000);
}