here is the problem,i've got 2 submit button and also 2 forms in one page. says like this
<script>
function Premi1(url)
{
var newWindow;
var properti = 'scrollBars=yes, resizable=no, toolbar=no, menubar=no, location=no, directories=no, width=450, height=250, top=150, left=150';
newWindow = window.open(url, "Hitung_Premi", properti);
}
</script>
<script language="JavaScript">
function ce9()
{
var theform = document.form1;
theform.action = "submit_ce9_test.asp";
}
</script>
<form name="form1" method="post" onSubmit="return form1_onsubmit()">
<tr>
<td colspan="2"><input name="bunga" type="text" size="3" maxlength="3" onChange="document.form2.bunga2.value=this.value" disabled> % / Tahun</td>
</tr>
<tr>
<td height="20" colspan="7"><div align="center"> <input name="Premi" type="button" id="Premi" value="Premi" onClick="javascript

remi('hitung_premi.asp');java script:form2.submit();"> </div>
</td>
</tr>
<tr>
<td height="20" colspan="7"><div align="center">
<input type="submit" name="Submit" value="View" onClick="ce9()">
</td>
</tr>
</form>
<form name="form2" method="post">
<tr>
<td><input name="bunga2" type="hidden" id="bunga2" size="3" maxlength="3">
</td>
</tr>
</form>
so what i want is when i click the "premi" button it will submit form2 without reload the page.
is it possible to do so??and how to do that??
thx u