function delay1(){
    window.location = " page2.html "; 
}
function showIt() {
  document.getElementById("navigate").style.visibility = "visible";
}
setTimeout("showIt()", 14000);

function gotherethen() {
document.getElementById("gothere").style.visibility = "visible";
}
setTimeout("gotherethen()", 70000);