//++Clear/Restore VALUE Text inside Search Field On Focus/Blur
function clearText(thefield){ if (thefield.defaultValue==thefield.value)
thefield.value = "" }
function restoreText(thefield){ if (thefield.value=="")
thefield.value = thefield.defaultValue}

document.write('<DIV STYLE="position: absolute; top: 0px; right: 0px"><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 STYLE="padding: 0px; margin: 0px" ALIGN=right WIDTH="100%"><TR><TD ALIGN=right STYLE="text-align: right"><FORM NAME=search METHOD=post ACTION=\"http://www.tanbou.com/search/search.pl\"><INPUT TYPE=text CLASS=nextbutton OnFocus="this.className=\'nextbuttonOn\'; clearText(this)" OnBlur="this.className=\'nextbutton\'; restoreText(this)" OnMouseOver="this.className=\'nextbuttonOn\'; window.status=\'Type what you would like to search for here, and hit Return\'; return true;" OnMouseOut="this.className=\'nextbutton\'" TITLE=\"Tapez ce que vous voulez rechercher ici, et faites Retour\" NAME=terms VALUE=\"Moteur de Recherche\" SIZE=20 onFocus=\"clearText(this)\"><INPUT TYPE=hidden NAME=boolean VALUE=ET><INPUT TYPE=hidden NAME=case VALUE=Insensible></FORM></TD></TR></TABLE></DIV>');