<!--
/************************************************************************
*									*
*	DBSBox -- DeepBlue ShoutBox					*
*	-----------------------------------------------------------	*
*              Web: http://deepblue.indika.net.id			*
*            Email: deepblue@indika.net.id				*
*									*
*             File: add_html.js (javascript)				*
*    Scriptversion: 2.0							*
* File Description: Javascript smiley file function			*
*          Made by: include_once(dev4null@host.sk) on 09/11/2003	*
*        Last Edit: -							*
*          Comment: In this V-2.0, I've been added on the smiley	*
*		    function, a new line command for re-focusing	*
*		    text-pointer going back to the text-area when	*
*		    clicking smiley images (i_o aka dev4null)		*
*									*
*************************************************************************
*    This script is freeware! Please read the Readme Notice		*
*    (Readme.txt) for further information.				*
*    Download DBSBox @ http://deepblue.indika.net.id			*
************************************************************************/
//--->
function ketik_smiley(pilihan){
  document.forms[0].entry.value = document.forms[0].entry.value +' ' + pilihan ;
  document.forms[0].entry.focus();
  }

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}