// JavaScript Document
// dynamic drive test scripts
// salesInquiryForm
// f_interested_solutions
function contractall() {
	if (document.getElementById) {
		var inc=0;
		while (document.getElementById("solutionSub"+inc)) {
			document.getElementById("solutionSub"+inc).style.display="none";
			inc++;
		}
	}
}

function expandone() {
	if (document.getElementById){
		var selectedItem=document.salesInquiryForm.f_interested_solutions.selectedIndex;
		contractall();
		document.getElementById("solutionSub"+selectedItem).style.display="block";
	}
}

if (window.addEventListener) {
	window.addEventListener("load", expandone, false)
} else if (window.attachEvent) {
	window.attachEvent("onload", expandone)
}
// end