// JavaScript Document
function checkDelete(url) {
		if(confirm("Do you really want to delete? Operation is not reversable.")){
			window.location.href=url;
		}
}
