function hideId(toplayer_pro) {
    document.getElementById('toplayer_pro').style.display = "none";

}

var howLong = 45000;

t = null;
function closeMe(){
t = setTimeout("hideId()",howLong);
}
