function show(w,object) {
    if (w.document.layers && w.document.layers[object] != null)
        w.document.layers[object].visibility = 'visible';
    else if (document.all)
        w.document.all[object].style.visibility = 'visible';
}
function hide(w,object) {
    if (w.document.layers && w.document.layers[object] != null)
        w.document.layers[object].visibility = 'hidden';
    else if (document.all)
        w.document.all[object].style.visibility = 'hidden';
} 

function alertpopup(){
checkfint = confirm('You are opening a window that is controlled by a non-affiliated third party website.');
if (checkfint == true)
{
window.open('http://www.myFDICinsurance.gov', '', 'resizable=yes,status=0,scrollbars=yes,width=800,height=600');
}
}

function alertpopup1(){
checkfint = confirm('You are opening a window that is controlled by a non-affiliated third party website.');
if (checkfint == true)
{
window.open('http://www.fdic.gov/deposit/deposits', '', 'resizable=yes,status=0,scrollbars=yes,width=800,height=600');
}
}