function f_AbrePopupCotacao(CO_PAPEL) {
	f_PopNovo(CO_PAPEL)
}

function f_PopNovo(co_papel) {
	co_papel = co_papel.toUpperCase().replace(', ',',')
	arrPapel = co_papel.split(",");
	window.open('/aspx/PopUpQuotes.aspx?Papel=' + arrPapel[0].replace(' ', '+'), 'box_cotacao_novo', 'width=580,height=550,resizable=yes,scrollbars=yes').focus();
	//http://www.investshop.com.br/mer/cot/pop/verifica_papel.asp
}

function f_PopCotacao(co_papel, tipo) {
	if (co_papel.length < 3) {
		alert("Digite pelo menos 3 caracteres.");
		return false;
	}
	
	f_PopNovo(co_papel);
	if (tipo == 'A')
		window.open('/geral/pop/aviso_pop_antigo.htm', 'aviso_pop_antigo', 'width=300,height=300');

	return false;
}