// JavaScript Document

function showDiv() {document.getElementById('intro1').style.display = "none";

document.getElementById('intro2').style.display = "block";}





function hideDiv() {document.getElementById('intro2').style.display = "none";

document.getElementById('intro1').style.display = "block";}










//function showDiv() {document.getElementById('intro1[id]').style.display = "none";

//document.getElementById('intro2[id]').style.display = "block";}





//function hideDiv() {document.getElementById('intro2[id]').style.display = "none";

//document.getElementById('intro1[id]').style.display = "block";}