// evita que aparezca la dirección de correo como enlace "mailto" en la página fuente
// USO:     correo('AH','Click here to email me!','comment on your pages')

function correo(nom,info,tema) {
	if (nom=="AH") nom="angel.herraez"
	var s;
	var host="uah.es";
	if (tema != "") host=host+"?subject="+tema;
        if (info == "") info="escribe";
        s="mail";
        document.write("<a href='"+s+"to:"+nom+"@"+host+"'>"+info+"</a>");
}


function sobreAH(info,tema) {
	info1="<img SRC='e-mail.gif' ALT='"	+ info + "' TITLE='" + info
		+ "' BORDER=0 height=22 width=32 align=ABSCENTER>";
	correo('AH',info1,tema)
}

function sobre(nom,info,tema) {
	info1="<img SRC='e-mail.gif' ALT='"	+ info + "' TITLE='" + info
		+ "' BORDER=0 height=22 width=32 align=ABSCENTER>";
	correo(nom,info1,tema)
}


function otrocorreo(nom,host,info,tema) {
	var s;
	if (tema != "") host=host+"?subject="+tema;
        if (info == "") info=nom+"@"+host;
        s="mail";
        document.write("<a href='"+s+"to:"+nom+"@"+host+"'>"+info+"</a>");
}

