function toggleContent(strDivName)
{
    if (eval (document.getElementById(strDivName)).style.display == 'none')
    {
        eval (document.getElementById(strDivName)).style.display = 'block';
    }
    else
    {
        eval (document.getElementById(strDivName)).style.display = 'none';
    }
}

function toggleContent2(strDivName1,strDivName2)
{
    eval (document.getElementById(strDivName1)).style.display = 'block';
    eval (document.getElementById(strDivName2)).style.display = 'none';
}

function toggleContent3(strDivName)
{
	if (strDivName == 'candidatos')
	{
    document.getElementById('empresas').style.display = 'none';
	document.getElementById('empresas2').style.display = 'none';
	document.getElementById('candidatos').style.display = 'block';
	}
	else
	{
    document.getElementById('empresas').style.display = 'block';
	document.getElementById('empresas2').style.display = 'block';
	document.getElementById('candidatos').style.display = 'none';
	}
}

function abrir_janela_popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function formulario(form) {
	window.open(form+".php","form",'status=yes,scrollbars=yes,width=780,height=500,top=0,left=0');
}

function formulario2(form) {
	window.open(form+".php","form2",'status=yes,scrollbars=yes,width=780,height=500,top=0,left=0');
}

function favoritos()
{
	URL = "http://www.estagiosul.com.br"
	Titulo = "Estágio Sul - Recursos Humanos"
	window.external.AddFavorite(URL,Titulo);	   
}	