function popUps(){
document.getElementById("DivOneText").style.visibility = 'visible';
}


function ClearPopUps(){
document.getElementById("DivOneText").style.visibility = 'hidden';
}


function popUpsTwo(){
document.getElementById("DivTwoText").style.visibility = 'visible';
}


function ClearPopUpsTwo(){
document.getElementById("DivTwoText").style.visibility = 'hidden';
}

function popUpsThree(){
document.getElementById("DivThreeText").style.visibility = 'visible';
}


function ClearPopUpsThree(){
document.getElementById("DivThreeText").style.visibility = 'hidden';
}

