//<script language="javascript">
function cek_search()
{
	if (document.mysearch.word.value=="Search")
	{
		document.mysearch.word.value="";	
	}
}

document.write(' <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#BEC3C6">'
			 +'    <form name=mysearch action="/search/" method="post">'
			+'	<tr> '
                +'      <td width="76%" align="right"> <input name="word" type="text" value="Search" size="18" onClick="cek_search()"> '
                 +'     </td>'
                  +'    <td width="24%" height="26" align="center"><input type=image src="../images/bttn_go_dlm.gif" width="20" height="20" border="0"></td>'
                   +' </tr>'
			+'	</form>'
                +' </table>');
//</script>