function popup_ultraslim(url,x,y)
{
	newWindow = window.open(url,"","width="+x+",height="+y+",left=10,top=10,bgcolor=white,resizable,scrollbars");
	if ( newWindow != null )
	{
		newWindow.focus();
	}
}
function addSmiley(str)
{
	target = document.getElementById('msgBody');
	target.value = target.value + ' ' + str + '\n';
	target.focus();
}
