function init(){
if(document.getElementById){
    setTimeout("hide('hello')", 10000);
    }
}
function hide(arg) {
        document.getElementById(arg).style.display='none';
}
window.onload=init;


