<!--
/***************************************************
 *
 * Nayak Website: Javascript fuer Selectboxen
 * Version: $Rev: 149 $
 * Stand: $Id: selectbox_script.js 149 2006-06-12 14:32:45Z ab $
 *
 * (c) 2006 by mehrwert
 *
 * mehrwert intermediale kommunikation
 * Beutel & Ploch GbR
 * Riehler Strasse 51
 * 50668 Koeln
 *
 * Tel: +49 221 139753-0
 * Fax: +49 221 139753-13
 *
 * typo3@mehrwert.de
 * http://www.mehrwert.de
 *
 **************************************************/

function selectItemFromFirstBox(data) {
	document.getElementById("selectedValue-1").setAttribute("value", data);
	if (document.getElementById("options-show-1")) {
		hideFirstOptions();
	}
}

function toggleBlockDisplay(divID) {
	if (document.getElementById(divID).style.display == "none") {
		document.getElementById(divID).style.display = "";
	}
	else {
		document.getElementById(divID).style.display = "none";
	}
}

function showFirstOptions() {
	if (document.getElementById("options-1")) {
		document.getElementById("options-1").id = "options-show-1";
	}
	if (document.getElementById("options-show-2")) {
		hideSecondOptions();
	}
}

function hideFirstOptions() {
	if (document.getElementById("options-show-1")) {
		document.getElementById("options-show-1").id = "options-1";
	}
}

function selectItemFromSecondBox(data) {
	document.getElementById("selectedValue-2").setAttribute("value", data);
	if (document.getElementById("options-show-2")) {
		hideSecondOptions();
	}
}

function showSecondOptions() {
	if (document.getElementById("options-2")) {
		document.getElementById("options-2").id = "options-show-2";
	}
	if (document.getElementById("options-show-1")) {
		hideFirstOptions();
	}
}

function hideSecondOptions() {
	if (document.getElementById("options-show-2")) {
		document.getElementById("options-show-2").id = "options-2";
	}
}
-->
