// JavaScript Document
function someValor(id,valor)
{
	var valorAgora = $D(id).value;
	if(valorAgora==valor)
	{
		$D(id).value = '';
	}
}
function pulaCampo(id,valor,prox)
{
	var valorAgora = $D(id).value;
	if(valorAgora.length==valor)
	{
		$D(prox).focus();
	}
}
function validaTel(id,prox)
{
	var valorAgora = $D(id).value;
	if(valorAgora.length==4)
	{
		$D(id).value = valorAgora+'-';
	}
	else if(valorAgora.length==9)
	{
		$D(prox).focus();
	}
}
