function in_array(valor, array)
{
    var key;

    for(key in array)
    {
        value = array[key];
        if(value == valor)
            return true;
    }
    return false;
}


function popularCombo(tarifas)
{
	for(i=0; i < tarifas.length; i++)
		document.forms[0].selecao.options[i] = new Option(tarifas[i][0], i);

}

function mostarTarifa(indice)
{
	if(indice)
	{
		document.getElementById("valor_tarifa").value = tarifas[indice][1];
	}
}


function AbreAtendimento(strURL)
{
    //if(!strURL)
        //strURL = 'http://www.oligador.com.br/index.php';
    winChat = window.open('http://www.oligador.com.br/chat/request.php?l=oligador&x=1&deptid=1&page=', 'winChat', "width=520,height=430");
    winChat.focus();
}
