function PopUp(url,janela,str_largura,str_altura,scroll) {
	var largura = (screen.width - str_largura) / 2;
	var altura = (screen.height - str_altura) / 2;
	features = 'height='+str_altura+',width='+str_largura+',top='+altura+',left='+largura+',scrollbars='+scroll+''
	win = window.open(url,janela,features)
}

function Redireciona(page,target,msg){
	var aux;
	
	if(target == ""){
			target = '_self';
	}
	
	if(msg != ""){
			alert(msg);
	}	
	
	window.open(page,target);
}

function Data(){
	hoje = new Date()
	dia = hoje.getDate()
	dias = hoje.getDay()
	mes = hoje.getMonth()
	ano = hoje.getYear()
	
	if (dia < 10)
	dia = "0" + dia
	
	if (ano < 2000)
	ano = 1900 + ano
	
	function NArray (n) 
	{
	this.length = n
	}
	
	Dia = new NArray(7)
	
	Dia[0] = "Domingo"
	Dia[1] = "Segunda"
	Dia[2] = "Ter&ccedil;a"
	Dia[3] = "Quarta"
	Dia[4] = "Quinta"
	Dia[5] = "Sexta"
	Dia[6] = "S&aacute;bado"
	
	Mes = new NArray(12)
	
	Mes[0] = "janeiro"
	Mes[1] = "fevereiro"
	Mes[2] = "mar&ccedil;o"
	Mes[3] = "abril"
	Mes[4] = "maio"
	Mes[5] = "junho"
	Mes[6] = "julho"
	Mes[7] = "agosto"
	Mes[8] = "setembro"
	Mes[9] = "outubro"
	Mes[10] = "novembro"
	Mes[11] = "dezembro"
	
	document.write(dia + "&nbsp;de&nbsp;" + Mes[mes] + "&nbsp;de&nbsp;" + ano);
}

function ValidaNumero(campo) {
	//aux = document.getElementById(campo);
	
	if(!(((window.event.keyCode>=48) && (window.event.keyCode<=57)) || (window.event.keyCode==13)) ) {
		window.event.keyCode=0;
		campo.focus();
		return false;
	}
}

function mudaLink(estado,id){
	if(estado == 'over'){
		document.getElementById(id).style.backgroundColor='#D6D6D6';
		document.getElementById('seta'+id).src='../img/ico_seta_laranja.gif';
		document.getElementById('link'+id).style.color='#000000';
	}else if(estado == 'out'){
		document.getElementById(id).style.backgroundColor='';
		document.getElementById('seta'+id).src='../img/ico_seta_azul.gif';
		document.getElementById('link'+id).style.color='#000000';
	}	
}