﻿/*
+ ----------------------------------------------------------------------------+
|     Modification of QUICK REPLY form for e107 forum system
|
|     ©Metaller, 2007 
|     http://e107.org.ru
|     metaller@e107.org.ru
|
|     Released under the terms and conditions of the
|     GNU General Public License (http://gnu.org).
+----------------------------------------------------------------------------+
*/

function pasteselection()
{
		var fr = document.getElementById('fastreplyarea');
		var myselection = '';
	
		if ( window.getSelection )
		{
			myselection = window.getSelection();
		}
		else if ( document.selection )
		{
			myselection = document.selection.createRange().text;
		}
		else if ( document.getSelection )
		{
			myselection = document.getSelection();
		}
		if (fr)
		{
			fr.value += '[blockquote]'+myselection+'[/blockquote]\n';
			fr.focus();
		}

	return false;
}

function addname(name)
{
	var fr = document.getElementById('fastreplyarea');
	if (fr)
		{
			fr.value += '[b]'+name+':[/b] ';
			fr.focus();
		}

	return false;
}
