<!--
function check(url)
{
  var confirmation = confirm("Do you really want to do this?");
  if(confirmation == true)
  {
    window.location = url;
  }
}

function goTo(url)
{
  window.location = url;
}

function emoticon(text) {
	var txtarea = document.post.comment;
	text = ' ' + text + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
		txtarea.focus();
	} else {
		txtarea.value  += text;
		txtarea.focus();
	}
}
-->
