/* fucntion script client */

function displayChoice(paramId)
{
    document.getElementById(paramId).style.display = "block";
    document.getElementById('advertissment').style.display = "none";

}

function redirectChoice(paramId, paramAdvertissment, paramContainer, paramLang)
{
    var _el  = document.getElementById(paramId);
    var _el2 = document.getElementById(paramAdvertissment);
    var _el3 = document.getElementById(paramContainer);
    var _lang = paramLang;
    if (_el.value == 1 || _el.value == '1')
    {
        //redirect to miniSiti

        var _url = 'http://' + document.location.hostname + '/invest2010/' + _lang;
        window.location.href = _url;
    }
    else
    {
        //display advertissment
        _el2.style.display = "block";
        _el3.style.display = "none";

        //redirectg to renta.org
        redirecSite();
    }
}
function getRedirect()
{
    window.location.href = "http://www.rentabiliweb.org/index3.html";
}
function redirecSite()
{
    setTimeout('getRedirect()', 9000);
}
