<!--
function CargaCombo(iParent, oCombo, sDados, sSelected){

	intSelected = 0;
	oCombo.disabled = false;
	oCombo.length=1;
	j=1;
	for (i=1; i < sDados.length; i++) {
		if (sDados[i].Parent == iParent) {
			if (sDados[i].Index == sSelected) {
			  intSelected = j;
			  }
			oCombo.options[j++]= new Option(sDados[i].Text, sDados[i].Index);
		}
	}
	oCombo.length=j;
	oCombo.options[intSelected].selected=true;
		
	if (oCombo.length == 1)
	   oCombo.disabled = true;
	   
    return true;
}

function getCookie(nome) {
	var strnome = nome + "="
	var arCookies = document.cookie.split(';')
	for(var i=0;i<arCookies.length;i++) {
		var n = arCookies[i];
		while (n.charAt(0)==' ') n = n.substring(1,n.length)
		if (n.indexOf(strnome) == 0) return n.substring(strnome.length,n.length)
	}
	return 0
}

function MostrarFoto(idFoto,nmFoto) {
	
	window.status='';
    window.open("MEM_ImagemDisp.asp?idFoto=" + idFoto + "&nmFoto=" + nmFoto,"Foto","resizable=no,dependent=yes,width=269,height=269,top=270,left=470");
    return true;
    
}

function Player(par1, par2, par3, par4) 
{
	
	if(par3 == "")
	{
	   alert("Áudio não disponível!");
	   return true;
	}
	
	window.status=''; 
    window.open("MEM_Player.asp?p1="+par1+"&p2="+par2+"&p3="+par3+"&p4="+par4,"Player","resizable=no,dependent=yes,width=277,height=10,top=0,left=0");
    return true;
    
}

-->
