function emoticon(text, field) {
   var txt= document.getElementById(field);
   txt.value += text;
   txt.focus();
}

function popitup(url) {
	newwindow=window.open(url,'name','height=450,width=450');
	if (window.focus) {newwindow.focus()}
	return false;
}
