function confirmDelete(confirmText){
var agree=confirm(confirmText);
if (agree)
	return true ;
else
	return false ;
}