﻿
// Log user into the eIFRS website
function Login()
{
    
    var _action = document.forms[0].action
    var _target = document.forms[0].target

    document.forms[0].target = "new";
    document.forms[0].action = "http://eifrs.iasb.org/eifrs/Menu";
    
    document.forms[0].submit();
    
    document.forms[0].target = _target;
    document.forms[0].action = _action;
        
    
    
}


// Show or hide element by ID
function showhide(id)
{
    if (document.getElementById)
    {
        obj = document.getElementById(id);    
        
        if (obj.style.display == "none")
        {
            obj.style.display = "";
        } 
        else 
        {
            obj.style.display = "none";
        }
    }
}