function moduleUpdateSubmoduleType() {
	if(document.editform.type.options[document.editform.type.selectedIndex].value == "Link") {
		document.editform.link.disabled = false;
		document.editform.link.className = "inputbox";

		document.editform.customhtml.disabled = true;
		document.editform.customhtml.className = "disabled";
		document.editform.customhtml.value = '';
	}else if(document.editform.type.options[document.editform.type.selectedIndex].value == "Custom HTML Menu") {
		document.editform.customhtml.disabled = false;
		document.editform.customhtml.className = "inputbox";

		document.editform.link.disabled = true;
		document.editform.link.className = "disabled";
		document.editform.link.value = '';
	}else {
		document.editform.customhtml.disabled = true;
		document.editform.customhtml.className = "disabled";
		document.editform.customhtml.value = '';
		document.editform.link.disabled = true;
		document.editform.link.value = '';
		document.editform.link.className = "disabled";
	}
}

