function AbrePop(windowURL, windowName, windowWidth, windowHeight)
{
	window.open(windowURL, windowName, "width="+windowWidth+",height="+windowHeight+",dependent=yes,toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0");
}

function lnkUMD()
{
	parent.main.location.href="CDNPesquisaOutrasMidias.aspx?umd"
}

function BannerClick(n)
{
	var arr;
	arr = window.location.href.split("?");
	if(arr.length > 0)
	{
		if(arr[1] == "umd")
		{
			ShowHide(n);
		}
	}
	
}

function ShowHide(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
		if(el.style.display != "block"){ 
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}

function OcultarExibir(obj,txt,img){
	if(document.getElementById){
	var el = document.getElementById(obj);
			el2 = document.getElementById(txt);
			el3 = document.getElementById(img);
		if(el.style.display != "block"){ 
			el.style.display = "block";
			el2.innerHTML = "ocultar";
			el3.src = '../Img/imgUp.gif';
		}else{
			el.style.display = "none";
			el2.innerHTML = "exibir";
			el3.src = '../Img/imgDown.gif';
		}
	}
}

function OcultarExibirObj(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
		if(el.style.display != "block"){ 
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
