function checkform_contacto(obj)
{
 if(isEmpty(obj.nombre.value))
   {
   var alerta = document.getElementById(obj.nombre.name+'_hint');
   alerta.style.display = 'block';
   obj.nombre.focus();
   return false;
   }
 if(isEmpty(obj.codseg.value))
   {
   var alerta = document.getElementById(obj.codseg.name+'_hint');
   alerta.style.display = 'block';
   obj.codseg.focus();
   return false;
   }   
 return true;
}
