function quote(nick,id,istopic) {
	var selectedText =  null;
	var quote_mesg = '[q';
	if (document.selection)
		selectedText = document.selection.createRange();
	if (selectedText != null && selectedText.text) {
		mesg = selectedText.text;
	} else {
		if (istopic == 1)
			eval('mesg = topic'+id);
		else
			eval('mesg = mesg'+id);
	}
	if (nick != '') quote_mesg += ' "' + nick + '"';
	quote_mesg += ']' + mesg + "[/q]\n";
	if (document.CreateForumObject[0].innerText) {
		document.CreateForumObject[0].innerText += quote_mesg;
	} else {
		document.CreateForumObject[0].value += quote_mesg;
	}
	document.CreateForumObject[0].focus();
	return true;
}
