var Hydra = function()
{
    //this.lang_code = false;
}

Hydra.prototype.get = function(elem_id)
{
    return document.getElementById(elem_id);
}

Hydra.prototype.open_url = function(url)
{
    document.location.href = url;
}


var hydra = new Hydra();