codice:
<script language="JavaScript">
<!--
function Ricerca() {
var termine = document.ricerca.cerca.value;
location.href = "http://www.google.it/search?sourceid=navclient&hl=it&q=site:www.tuositi.it+" + termine;
}
//-->
</script>
o se preferisci già in tabella:
codice:
<div align="center">
<table border="0" cellpadding="0" cellspacing="0" width="119" height="36">
<tr>
<td bgcolor="#C0C0C0" height="41" width="117">
<div align="center">
<form name="ricerca">
<input type="text" name="cerca" size="15">
<input type="button" value="Cerca" onClick="Ricerca()">
</form>
</div>
<script language="JavaScript">
<!--
function Ricerca() {
var termine = document.ricerca.cerca.value;
location.href = "http://www.google.it/search?sourceid=navclient&hl=it&q=site:www.tuosito.it+" + termine;
}
//-->
</script>
</td>
</tr>
</table>
</div>