/* MASCARAR CAMPOS */
function mascarar(src,msk) {
	var i		= src.value.length;
	var x		= msk.substring(0,1);
	var y		= msk.substring(i);
	
	if (y.substring(0,1) != x) {
		src.value += y.substring(0,1);
	}
}

/* PERMITE APENAS NÚMEROS */
function Numeros(){
	var tecla = event.keyCode;
	if (tecla > 47 && tecla < 58){ 
		return true;
	}else{
		if (tecla != 8){
			event.keyCode = 0;
		}else{
			return true;
		}
	}
}

function AbrirCadastro(){
	var W = 433; 	
	var H = 380;
	var X = Math.ceil( (window.screen.height - H) / 2 ) - 50;
	var Y = Math.ceil( (window.screen.width - W) / 2 ) - 16;
	window.open('cadastro/','ffb_cadastro','width='+W+',height='+H+',top='+X+',left='+Y+',location=no,status=yes,menubar=no,scrollbars=no,resizable=no,directories=no,toolbar=no');
}

function GaleriadeFotos(){
	var W = 650; 	
	var H = 450;
	var X = Math.ceil( (window.screen.height - H) / 2 ) - 50;
	var Y = Math.ceil( (window.screen.width - W) / 2 ) - 16;
	window.open('album/','ffb_album','width='+W+',height='+H+',top='+X+',left='+Y+',location=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,toolbar=no');
}

function AbrirVideo(vc_video){
	document.getElementById('ifPlayer').src = 'http://hamburgo.braslink.com/cruzeirouniversitario.com.br/videosForma/player.asp?videoVC='+vc_video;
	document.getElementById('dv_player').style.visibility = 'visible';

}

function FecharVideo(){
	document.getElementById('dv_player').style.visibility = 'hidden';
	document.getElementById('ifPlayer').src = 'http://about:blank';
}
