<!-- begin script
function MailToFriend() {
var enlacexx="http://www.iree-sanmiguel.org";
if (lengua=="eng") {
	var textoxx=", I found a Web Page I know for sure you will be interested in: ";
	var amigo= prompt ('Name of your Friend: ','');
	var email= prompt ('E-mail of your Friend: ','');
	var subj=('I found a Page you might be interested in');
	var body=('Hello '+amigo+textoxx+enlacexx);
}
else {
	var textoxx=", encontré una página que de seguro te va a interesar: ";
	var amigo= prompt ('Nombre de su Amigo: ','');
	var email= prompt ('E-mail de su Amigo: ','');
	var subj=('Encontré una página que te va a interesar');
	var body=('Hola '+amigo+textoxx+enlacexx);
}
var cc=('info@iree-sanmiguel.org');
window.location="mailto:"+email+"?cc="+cc+"&subject="+subj+"&body="+body;
}
// end script -->
