﻿// JScript File
function redim(iframe)
{
    if(navigator.appName=="Microsoft Internet Explorer")
        var altura = parseInt(document.body.scrollHeight);
    else
        var altura = parseInt(document.body.offsetHeight);   
    parent.document.getElementById(iframe).style.height = altura + 'px';
    
}

function abreDiv(obj)
{	
	var div;
	div = obj;
	
	if (document.getElementById(div).style.display == "none")
		document.getElementById(div).style.display = "block";
	else
		document.getElementById(div).style.display = "none";
}


function TrocaImagem(img,imagem) {
	img.src = imagem;
}

function MudaCor(menu,menu1,menu2,menu3,menu4,menu5){
	document.getElementById(menu).style.color	= "#082561";
	document.getElementById(menu1).style.color	= "#5D719B";
	document.getElementById(menu2).style.color	= "#5D719B";
	document.getElementById(menu3).style.color	= "#5D719B";
	document.getElementById(menu4).style.color	= "#5D719B";
	document.getElementById(menu5).style.color	= "#5D719B";
}

function AbreGaleria(Id, Nome){
	
	window.open('http://www.jornal.coc.com.br/galeria.asp?Id='+ Id +'&Nome='+ Nome,'wind','toolbar=no,width=645,height=553,scrollbars=yes,resizable=no');
	
}

function AbreMidia(Midia, Tipo, cesc){
	if (Tipo == 1){

		if (cesc == 'True')
			caminho = 'http://www.cocemsuacasa.com.br/images/salas/eventos/'
		else
			caminho = 'http://www.jornal.coc.com.br/fotos/'
			
		window.open(caminho + Midia,'wind','toolbar=no,width=628,height=504,scrollbars=yes,resizable=no');
		return
	}
	if (Tipo == 2){
		window.open('EventosVideoXML.asp?Video=' + Midia +'&cesc='+ cesc,'video','width=325,height=300,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no')
		return
	}
}

function AbreMidia(Midia, Tipo){
	if (Tipo == 1){
		window.open('http://www.jornal.coc.com.br/fotos/'+ Midia,'wind','toolbar=no,width=628,height=504,scrollbars=yes,resizable=no');
		return
	}
	if (Tipo == 2){
		window.location.href = 'http://www.jornal.coc.com.br/Fotos/' + Midia;
		return
	}
}

function AbreJanela(arq,alt,lag,res,barra){
	if(barra=='')
		barra = 0;
	if(navigator.appName=="Microsoft Internet Explorer")
		window.open(arq,'Condi','fullscreen=0,channelmode=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+ barra +',resizable=' + res + ',width=' + lag + ',height=' + alt + ',top=100,left=100');
	else
		window.open(arq,'Condi','location=0,fullscreen=0,menubar=0,toolbar=0,status=0,screenX=100,screenY=100,scrollbars='+ barra +',resizable=1,width=' + lag + ',height=' + alt);
}

function mudaCor(obj,cor){
	obj.style.backgroundColor = cor;
}