// JavaScript Document
function smiley(thesmiley) {
// inserts smilie text
	opener.document.msgform.message.value += thesmiley+" ";
	//opener.document.msgform.message.focus();
}

function popup(url,name,rs,sc,mn,tl,lo,wd,hi)
{
   openWindow = window.open(url,name,'resizable='+rs+',scrollbars='+sc+',menubar='+mn+',toolbar='+tl+',location='+lo+',width='+wd+',height='+hi);
   openWindow.focus();
}

