function deleteConfirm(deltext){
	var confirmCheck = confirm(deltext);
	if(confirmCheck==true){
		return true;
	} else {
		return false;
	}
}