// JavaScript Document

function FormataFone(Campo) 
{ 	
   	qtdcaracteres = (Campo.value).length; 
    if(qtdcaracteres == 0) 
       	Campo.value = "(" + Campo.value; 
    if(qtdcaracteres == 3) 
       	Campo.value = Campo.value + ") "; 
    if(qtdcaracteres == 9) 
       	Campo.value = Campo.value + "-"; 			
}

	function Tecla(e)
	{
		if (document.all) // Internet Explorer
			var tecla = event.keyCode;
		else if(document.layers) // Nestcape
			var tecla = e.which;
		if (tecla > 47 && tecla < 58) // numeros de 0 a 9
			return true;
		else
		{
			if (tecla != 8) // backspace
				event.keyCode = 0;
					//return false;
			else
				return true;
		}
	}
	
function Imprimir(Codigo,Categoria)
{
	window.open('imprimir.php?Codigo='+Codigo+'&Categoria='+Categoria, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width=575,height=450,left=20,top=20');
}	

	function Enter(valor){
		if(document.all) // Internet Explorer
			  var Tecla = event.keyCode;
		 else if(document.layers) //Nestcape
			  var Tecla = e.which;
		 
		 if(Tecla == 13){
			 Busca(valor);
		 }
	}

	function Busca(valor)
	{
		if( valor != '' )
		{
			location = 'http://www.unics.edu.br/busca.php?busca='+valor;
		}
		else
		{
			alert("Você deve digitar um termo para pesquisa.");
		}
	}