function addfav()
{
	if (document.all)
	{
		window.external.AddFavorite("http://www.makems.com","MakeMS - Your MySpace Resource");	
	}
}

function insertSmilie(text) {
  text = '' + text + '';
  if (document.frmPost.txtPost.createTextRange && document.frmPost.txtPost.caretPos) {
	var caretPos = document.frmPost.txtPost.caretPos;
	caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == '' ? text + '' : text;
	document.frmPost.txtPost.focus();
  } else {
	document.frmPost.txtPost.value  += text;
	document.frmPost.txtPost.focus();
  }
}