// JavaScript Document
function doMailto(txtmail, txtserver) {
	//var txtmail = "ro.let@univa.mx";
	location.href = "mailto:" + txtmail + "@" + txtserver;
}

