function ins(name)
{
	var input=document.REPLIER.Post;
	input.value=input.value+"[b]"+name+"[/b]"+" \n";
}

function InsertQuote()
{
	text = "";
	
	if (document.selection)
	{
		text = document.selection.createRange().text;
	}
	
	if (document.getSelection)
	{
		alert(document.getSelection().type + "]");
		text = document.getSelection().createRange().text;
		text = text.replace(/\r\n\r\n/gi, "_doublecaret_");
		text = text.replace(/\r\n/gi, " ");
		while (text.indexOf("  ") !=-1) text = text.replace(/  /gi, ""); 
		text = text.replace(/_doublecaret_/gi, "\r\n\r\n");
	}
	
	if (text != "")
	{
		paste("[quote]"+text+"[/quote]\n", 0);
	}
	else
	{
		alert("Выделете сначала область текста в сообщении.\nВыделенный текст будет добавлен в область быстрого ответа внизу страницы.");
	}
	
	return false;
}

function paste(text, flag)
{ 
	if ((document.selection)&&(flag)) 
	{
		document.REPLIER.Post.focus();
		document.REPLIER.document.selection.createRange().text = text;
	} 
	else 
	{
		document.REPLIER.Post.value += text;
	}
}
