<!-- 
function mail( document )
{ 

	var strRecipient
	var strMail
	var strURL
	var offset

	strURL = document.URL
	strTitle = document.title
	strRecipient = document.links[document.links.length-1]
	offset = 0

	for ( var LoopCount = 0; LoopCount <= 2; LoopCount++)
	{ offset = strURL.indexOf("/",offset) + 1}

	strURL = strURL.substring(offset - 1)

  	strMail=strRecipient + "?subject=" + strTitle + " [" + strURL + "]";
  	window.location=strMail;
  
}


// -->

