	function jsIndicat(id) {
		var f = document.f;
		var q = "q" + id;

		if ( document.getElementById(q).style.display == 'block' ) {
			document.getElementById(q).style.display = 'none';
		} else {
			document.getElementById(q).style.display = 'block';
		}
	}

	/* -----------------------------------------------
	onLoad
	----------------------------------------------- */
	window.onload = function() {
	}