function confirmSubmit(arg) {
var agree=confirm("Are you realy sure you want to DELETE this "+arg+"?");
if (agree)
	return true ;
else
	return false ;
}