// JavaScript Document

function showConfirmDialog(text, url) {
	if ( confirm(text) ) {
		window.location.href = url;
	}
}

function showElement(name) {
	document.getElementById(name).style.display = 'block';
	document.getElementById(name + '-link').style.display = 'none';
}
