function checkDelete(url,confirmtext) {
	var confirmed = confirm(confirmtext);
	if (confirmed) {
		document.location.href = url;
	}
}