function addSmiley(x) {
	var txtarea = document.Post.posttext;
	x = ' ' + x + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.x = caretPos.x.charAt(caretPos.x.length - 1) == ' ' ? caretPos.x + x + ' ' : caretPos.x + x;
		txtarea.focus();
	} else {
		txtarea.value  += x;
		txtarea.focus();
	}
}

function insertTag(x) {
	var txtarea = document.Post.posttext;
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.x = caretPos.x.charAt(caretPos.x.length - 1) == ' ' ? caretPos.x + x + ' ' : caretPos.x + x;
		txtarea.focus();
	} else {
		txtarea.value  += x;
		txtarea.focus();
	}
}