var _oldDiv;

function OpenCompetition(varURL) {
    window.open(varURL, 'ITCOMP', 'width=760,height=520');
}  

function PSwap(_div, _firstrun)
{
    eval("document.getElementById('_divProd"+_div+"').style.display = 'block'"); 
    eval("document.getElementById('_td"+_div+"').style.borderBottom = 'dotted 1px gray'"); 
    if (_firstrun != 'true')
    {
        eval("document.getElementById('_divProd"+_oldDiv+"').style.display = 'none'"); 
        eval("document.getElementById('_td"+_oldDiv+"').style.borderBottom = 'none 0px #F3F1E9'");
    }
    
    _oldDiv = _div;
}
   
function FAQSwap(_div, _plus)
{
    if (document.getElementById(_div).style.display == 'none')
    {
        document.getElementById(_div).style.display = 'block';
        document.getElementById(_plus).innerHTML = '-&nbsp;';
    }
    else
    {
        document.getElementById(_div).style.display = 'none';
        document.getElementById(_plus).innerHTML = '+&nbsp;';
    }
}


