<!--

/*[*] SCRIPT: Validate forms
[*] Copyright 2003 © PictureWeb http://www.pictureweb.com.br
[*] Todos os direitos reservados

*/

// --- INICIO ---


function fieldColor(campo,x){
			if(x==1){
				document.all[campo].style.background='#F2F2F2';
			}
			else{
				document.all[campo].style.background='#FFFBFF';
			}
		}

function pula() 
{
	
	var dI = document.frm.txtDdd.value;
	
	if (dI.length == 2) 
	{document.frm.txtTelefone.focus();}
						
}

function pula1() 
{
	
	var dI = document.frm.ddd.value;
	
	if (dI.length == 2) 
	{document.frm.fone.focus();}
						
}
