// JavaScript Document

function mouseclick()
{

	var r=confirm("Are you sure the above information can be submitted?");
if (r==true)
  {
  document.write("Successfully completed submission!");
  }
}
