
//Service-Engine
function GetBaseURL(){
	return "http://onlinereports.dyndns.org";
}

// Link zu Story versenden
  function SendStory(){
  		var a = GetBaseURL() + "/OLRServices/SendStory.aspx?URL=" + escape(document.URL);
  		a += "&title=" + escape(document.title);
  		var newwin = window.open(a , "Verschicken");
}

// Dig Deeper
function DigDeeper(){
  		var a = GetBaseURL() + "/OLRServices/DigDeeper.aspx?URL=" + escape(document.URL);
  		a += "&title=" + escape(document.title);
  		var newwin = window.open(a , "Hinweis");
}

// Echo senden
function SendEcho(){
  		var a = GetBaseURL() + "/OLRServices/Echo.aspx?URL=" + escape(document.URL);
  		a += "&title=" + escape(document.title);
  		var newwin = window.open(a , "Echo");
}
