// JavaScript Document

function redirect(L){
	window.location.href=L;
}

function vComentarios(){
	doc = document.fComentarios;
	msg = "Favor preencher corretamente!";
	if(doc.com_nome.value == ""){
		alert(msg);
		doc.com_nome.focus();
		return false;
	}
	if(doc.com_email.value == ""){
		alert(msg);
		doc.com_email.focus();
		return false;
	}
	if(doc.com_localidade.value == ""){
		alert(msg);
		doc.com_localidade.focus();
		return false;
	}
	if(doc.com_comentario.value == ""){
		alert(msg);
		doc.com_comentario.focus();
		return false;
	}
	return true;	
}

function charLimiter(elem, limit){
	var texto = elem.value;
	var pos = elem.value.length;
	var lim = limit;
	var dif = eval(lim - pos);

	if(dif <= 1){
	 	//alert("Você está atingindo o limite máximo de "+lim+" caracteres");  
		elem.value = texto.substr(0, lim);
		dif =0;
	}
	document.getElementById('labelPos').innerHTML = dif;
}


function streaming(V){
	window.open("streaming/index.php?video="+V,"STREAMING","toolbar=0,location=0,directories=0,scrollbars=0,width=640,height=420,left=10,top=10");
}