// JavaScript Document

function MailSend()
{
	mail_str = "mailto:ingrese el mail de su contacto?subject=" + document.title;
	mail_str += "&body=Te recomiendo que visites nuestra página (www.aipem.com) -- " + document.title;
	mail_str += ". Enlace: " + location.href; 
	location.href = mail_str;
}
