/* Copyright (C) 2002-2008 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.5 $ $Date: 2008/03/11 15:12:47 $ */

/* owner: Simon.Leidig@brave.de */

function get_selection()
{
  var range, sel;

  if (document.all && document.selection) { // IE: "I do it my way!"
    sel = document.selection;
    range = sel.createRange();
    return range.text;
  } else if (document.implementation.hasFeature("Range", "2.0") && window.getSelection) {
    sel = window.getSelection();
    range = sel.getRangeAt(0);
    return range.toString();
  }

  return '';
}
function write_get_selection (content) {
	if (
		document.all && document.selection ||
		document.implementation.hasFeature("Range","2.0") && window.getSelection
	) document.write(content);
}
