// JavaScript Document

function kadabra(zap) {
	if (document.getElementById) {
		var abra = document.getElementById(zap).style;
		if (abra.display == "inline") {
			abra.display = "none";
		} else {
			abra.display= "inline";
		}
		return false;
	} else {
		return true;
	}
}
