function confirmNav(url) {
	if(confirm("Are you sure?")) {
		if(url != "" && url != "undefined" && url != null) {
			window.location = url;
		}
		else return true;
	}
}