//<!--
function show_menu(obj_s,obj){
var  s_id = document.getElementById(obj_s);
var  sc_id = document.getElementById(obj);
s_id.style.display = "block";
sc_id.className = "currencies_hover";
}
function hide_menu(obj_h,obj){
var  h_id = document.getElementById(obj_h);
var  hc_id = document.getElementById(obj);
h_id.style.display = "none";
hc_id.className = "currencies";
}

 function click() {
        return false; 
    }
    function click1() {
        if (event.button == 2) { return false; } 
    }
    function CtrlKeyDown() {
        if (event.ctrlKey) {return false;} 
    }
    document.onkeydown = CtrlKeyDown;
    document.onselectstart = click;
    document.onmousedown = click1;

//-->

