	function $(id)
	{
		return document.getElementById(id)
	}
	function valFone(campo,label) {
		var regex = new RegExp('^[0-9]{4}-[0-9]{4}');
	  	if ($(campo).value.match(regex) && $(campo).value!="")
	  	{
		  highlight($(campo), inputclasserror);
		  return label +' Invalido!!'; 
		}
	}
	function valCEP(campo) {
		var regex = new RegExp('^[0-9]{5}-[0-9]{3}');
	  	if (!$(campo).value.match(regex) && $(campo).value!="")
	  	{
	  	  highlight($(campo), inputclasserror);
		  return 'CEP Invalido!!'; 
		}
	}