<!-- begin script
function MailToFriend() {
var enlacexx="http://www.roseannhalldesigns.net";
if (lengua=="eng") {
	var textoxx=", I found a Web Site brimming with beautiful handmade items from Mexico that I know you will enjoy: ";
	var amigo= prompt ('Name of your Friend: ','');
	var email= prompt ('E-mail of your Friend: ','');
	var subj=('Rose Ann Hall Designs new website. Hundreds of handmade items from Mexico.');
	var body=('Hello '+amigo+textoxx+enlacexx);
}
else {
	var textoxx=", I found a Web Site brimming with beautiful handmade items from Mexico that I know you will enjoy : ";
	var amigo= prompt ('Nombre de su Amigo: ','');
	var email= prompt ('E-mail de su Amigo: ','');
	var subj=('Rose Ann Hall Designs new website. Hundreds of handmade items from Mexico.');
	var body=('Hola '+amigo+textoxx+enlacexx);
}
var cc=('friends@roseannhalldesigns.net');
window.location="mailto:"+email+"?cc="+cc+"&subject="+subj+"&body="+body;
}
// end script -->

