partiendo de que esto no tiene sentido, pruebalo
Cita: <html>
<head>
<script>
function fnc() {
alert('La Información se Guardo Correctamente!!!');
if (confirm('Desea Guardar Otra Vez?')){
document.location='grabar.php';
} else {
document.location='index.php';
}
}
</script>
</head>
<body>
<form name="f" onsubmit="return fnc()">
<input type="text" name="campo" value="" />
<input type="submit" value="ver" />
</form>
</body>
</html>