Hola
ya lo solucioné, en el form puse esto:
<form name="frmimage" id="frmimage" method="post"
onsubmit="return hola(1)">
y el script:
function hola(h)
{
if (h == 1)
{
alert("siiii");
return 1;
}
else
{
alert("nooo");
return false;
}
}
Gracias por la ayuda