<html>
<head>
<title>Status Title</title>
<script language="JavaScript"> <!--
function asksave()
{
	
	if(confirm("Are you sure to save?")==true)
	{
		window.location.replace("save")
	}
	else
	{
		window.history.go(-1)
	}
	return true
}
//--></script>
</head>
<BODY onload='asksave()'></BODY></HTML>
