//Disable right mouse click Script
///////////////////////////////////
function clickIE4(){
if (event.button==2){
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
return false;
}
}
}

if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")


function clearBox ()
{
    var foo = document.forms.OneUnited_Search.q.value ;

    if ( foo == "Search OneUnited.com" )
    {
        document.forms.OneUnited_Search.q.value = "" ;
    }
}

//Disable right open external browser
///////////////////////////////////

    function openExternal(strURL) {
        val=confirm("IMPORTANT NOTICE:  OneUnited Bank is providing these links to websites as a customer service.  OneUnited Bank is not responsible for the content available at these third party sites.  The Bank’s privacy policy does not apply to linked websites.  Please consult the privacy disclosures on each third party web site for further information.");
        if (val) {
            window.open(strURL);
        }
    }

