// JavaScript Document
<!--
function showwiki()
{
	var wikisearchURL = "http://en.wikipedia.org/wiki/Special:Search?search=";
	if (window.getSelection)
	{
		var wikitext = window.getSelection();
	} 
	else if (document.getSelection) 
	{
		var wikitext = document.getSelection();
	} 
	else if (document.selection) 
	{
		var wikitext = document.selection.createRange().text;
	}
	else
	{
		alert("needed javascript selection objects not supported");
	}
	var wiki = wikisearchURL+wikitext;
	window.open(wiki,"","width=800px, height=800px,menubar=yes,resizable=yes, scrollbars=yes, location=yes, status=yes, toolbar=yes");
}
function showgoogle()
{
	var googlesearchURL = "http://www.google.com/search?hl=en&q=";
	if (window.getSelection)
	{
		var googletext = window.getSelection();
	} 
	else if (document.getSelection) 
	{
		var googletext = document.getSelection();
	} 
	else if (document.selection) 
	{
		var googletext = document.selection.createRange().text;
	}
	else
	{
		alert("needed javascript selection objects not supported");
	}
	var google = googlesearchURL+googletext;
	window.open(google,"","width=800px, height=800px,menubar=yes,resizable=yes, scrollbars=yes, location=yes, status=yes, toolbar=yes");
}
function showdie()
{
	var diesearchURL = "http://dict.die.net/?q=";
	if (window.getSelection)
	{
		var dietext = window.getSelection();
	} 
	else if (document.getSelection) 
	{
		var dietext = document.getSelection();
	} 
	else if (document.selection) 
	{
		var dietext = document.selection.createRange().text;
	}
	else
	{
		alert("javascript selection objects not supported");
	}
	var die = diesearchURL+dietext;
	window.open(die,"","width=800px, height=800px,menubar=yes,resizable=yes, scrollbars=yes, location=yes, status=yes, toolbar=yes");
}
//-->