function sendto_action( )
{
	var sendto_url = document.getElementById("sendto_url") ? document.getElementById("sendto_url").href : "#";
	var sendto_sack = new sack(sendto_url);    
	var sendto_email = prompt(sendto_i10n["Enter e-mail address:"], "");

	if(sendto_email)
	{
  	sendto_sack.execute = 0;
  	sendto_sack.method = "POST";
  	sendto_sack.setVar("action", "sendto");
  	sendto_sack.setVar("content", document.getElementById("content").innerHTML);
  	sendto_sack.setVar("title", document.title);
  	sendto_sack.setVar("mail", sendto_email);
  	sendto_sack.onCompletion = function() { alert(this.response)};
  	sendto_sack.onError = function() { alert(sendto_i10n["Transport error"])};
  	sendto_sack.runAJAX( );
	}

	return false;
}

