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 = '';
		document.editform.contents.className = "disabled";
		document.editform.contents.value = '';
		if(document.editform.contents.disabled == false)
			toogleEditorMode('contents', 'disable');
		document.editform.contents.disabled = true;
	}else if(document.editform.type.options[document.editform.type.selectedIndex].value == "Simple Text") {
		document.editform.link.disabled = true;
		document.editform.link.className = "disabled";
		document.editform.link.value = '';
		document.editform.customhtml.disabled = true;
		document.editform.customhtml.className = "disabled";
		document.editform.customhtml.value = '';

		document.editform.contents.className = "inputbox";
		if(document.editform.contents.disabled == true)
			toogleEditorMode('contents', 'enable');
		document.editform.contents.disabled = false;
	}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 = '';
		document.editform.contents.className = "disabled";
		document.editform.contents.value = '';
		if(document.editform.contents.disabled == false)
			toogleEditorMode('contents', 'disable');
		document.editform.contents.disabled = true;
	}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.contents.value = '';
		document.editform.link.className = "disabled";
		document.editform.contents.className = "disabled";
		if(document.editform.contents.disabled == false)
			toogleEditorMode('contents', 'disable');
		document.editform.contents.disabled = true;
	}
}

