function deleteThis(URL,theType) {
	var agree = confirm("Do you really want to delete this "+theType+"?");
	if (agree) { window.location.replace(URL); }
}

function showHide(theId, switchId) {
	if (document.getElementById(theId).className == '' || document.getElementById(theId).className == 'show') {
		document.getElementById(theId).className = 'hide';
		if (switchId != "") {
			document.getElementById(switchId).className = 'show';
		}
	}
	else {
		document.getElementById(theId).className = 'show';
		if (switchId != "") {
			document.getElementById(switchId).className = 'hide';
		}
	}
}


function printPage() {
	window.print();
}
