// FAST NICK INSERT

function ins_nick(nck)
{
	var fast_rep = document.REPLIER.Post;
	var fast_repta = document.getElementById('fast-reply_textarea');
	
	itm = my_getbyid('qr_open')
	if (itm.style.display == "none")
	{
		my_show_div(itm);
	}

	if(fast_rep.value == "")
	{
		fast_rep.value = "[b]" + nck + "[/b]" + ", ";
		fast_rep.focus();
		fast_repta.select(); 
		with(document.selection.createRange()) 
		collapse(false),select(); 
	}
	
}

