function chkmail(elform,verbo){
var m=elform.email.value;var ax=m.indexOf('@');var dm=m.substring(ax+1,m.length);var msg='';var msgwh='No se puede '+verbo+' a "'+m+'":\nEl dominio no corresponde a un servidor de correo; un dominio valido es "'
if(/*dm.indexOf('hotmail.com.')>-1||*/dm.indexOf('hotamil.')==0||dm.indexOf('hotmial.')==0||dm.indexOf('hotmil.')==0)msg=msgwh+'hotmail.com".'
if(dm.indexOf('elsitio.com.')>-1)msg=msgwh+'elsitio.com".'
if(dm=='ciudad.com')msg=msgwh+'ciudad.com.ar".'
if(dm=='fibertel.com')msg=msgwh+'fibertel.com.ar".'
if(ax<1||m.length<6||dm.length<4||dm.indexOf(".")<1)msg='No se puede '+verbo+' a "'+m+'", porque no es una direccion de email valida.'
if(m.substring(0,4)=='www.'||dm.substring(0,4)=='www.')msg='No se puede '+verbo+' a "'+m+'": las direcciones de email no comienzan con \"www.\", a diferencia de las de paginas web.'
if(msg!=''){
alert(msg); return false
}else return true
}