function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
function setsmileyn(smiley){
    var currentMessage = window.opener.document.sbx.frm_mess.value;
	if (currentMessage==window.opener.document.sbx.frm_mess.defaultValue)
	currentMessage = ""
    window.opener.document.sbx.frm_mess.focus();
	newMessage = currentMessage+""+smiley+"";
    window.opener.document.sbx.frm_mess.value=newMessage;    
	close();
	}
function openwindow(address){
x=window.open(address,"sbxposts","width=250,height=400,top=100,left=5,resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no")
}
function allposts(){
openwindow("index.php?all")
}
function viewsmilies(){
openwindow("index.php?smilies")
}
function help(){
openwindow("index.php?help")
}
