function hideIt() {
var sakriti = document.getElementById(“show”).style.visibility = ‘hidden’;
}
//setTimeout(“hideIt()”, 10000); // after 1 sec
function showIt() {
document.getElementById(“hid”).style.visibility = “visible”;
}
//setTimeout(“showIt()”, 10000); // after 1 sec
