<!-- 
var aLojasElements = 2;
var aLojas = new Array 
	(
	"sergio.gomes@newscia.com.br", "Diretoria",
	"socrates@newscia.com.br", "Unidade Sócrates",
	"cenesp@newscia.com.br",   "Unidade Centro Empresarial"
	);

function construirMenuDestinatarios ()
	{
	var nTop = aLojas.length / aLojasElements; 
	document.write ("<select size='1' name='destinatarios'>");
	document.write ("<option>Clique e Selecione o Destinatário</option>");
	for (nIndex = 0; nIndex < nTop; nIndex++)
		{
		document.write ("<option value='"+aLojas [nIndex * aLojasElements]+"'>"+aLojas [nIndex * aLojasElements + 1]+"</option>");
		}
	document.write ("</select>");
	}

//-->
