function showElement(element){
    obj = document.getElementById(element);
    if(obj.style.display == "block"){
        obj.style.display = "none";
    }else{
        obj.style.display = "block";
    }
}

function resetHomepage(){
    return confirm("Are you sure you wish to reset your homepage?");
}

