function showHide() {
try{
    var obj = document.getElementById('pop_home');
	obj.style.visibility = 'hidden';
} catch(e){status = e.message}
}
setInterval(showHide, 10000);