// JavaScript Document
	function Aenviaremail( url )	{
		// window.document.location.toString()
		// abre uma nova janela e passa o URL no GET
		// alert ( url );
		window.open( '/enviaremail/?q=' + url ,'enviar email','width=400,height=150');
	}

	function criarbody ( strTitle, strURL ) {
		return escape("Descobri um site que pode interessar-lhe:" +
			String.fromCharCode(13)+ String.fromCharCode(13) + strTitle + String.fromCharCode(13) + "URL: " + strURL);
	}

	function enviaremail ( url ) {
		windowHandle = window.open ( "mailto:?subject="+ escape(document.title) + "&body=" + criarbody( document.title, url )  );
	}
		
	function wmail( m )	{
		//var str = "<a  class='outros' href='mailto:" + m + "@fc.ul.pt'>" + m + "@fc.ul.pt</a>";
		var str = "<a  class='outros' href='mailto:" + m + "&#64;fc&#46;ul&#46;pt'>" + m + "&#64;fc&#46;ul&#46;pt</a>";
		return str;
	}
