// JavaScript Document

function mascara_tel(tel){ 
              var mytel = ''; 
              mytel = mytel + tel; 
              if (mytel.length == 2){ 
                  mytel = mytel + '-'; 
                  document.forms[0].tel.value = mytel; 
              } 
               
          } 
