// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function confirmSubmit(){
	var agree=confirm("Are you sure you wish to delete?");
	if (agree)
		return true ;
	else
		return false ;
}
