function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}

function ConfirmPop()
{
    var where_to= confirm("You are now leaving the secure website of Universal City Studios Credit Union (UCSCU).  The website you are about to access is not owned or operated by UCSCU and we are not responsible for its content.  Be aware that the privacy and security policies of third-party websites may differ from those practiced by UCSCU.  If you did not mean to leave our website, please click ‘Cancel’ now.  If you wish to continue to the next website, click ‘OK’.  Thank you for visiting UCSCU’s website.");
    if (where_to== true)
    return true;
    else 
    return false;
}
