function verifyDelete(link, text) {
	var areYouSure = confirm(text);

	if (areYouSure == true) {
		window.location = link;
	} else {
		return false;
	}
}

function hideBlock(idElement) {
	$("#"+idElement).css("display", "none");
}

function showBlock(idElement) {
	$("#"+idElement).css("display", "block");
}

/* Google Maps */

