summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript/firewall_nat_edit/firewall_nat_edit.js
blob: 2dcb845eb5c043e4ebb0a6a3ecf43b7663dd755c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
function ext_change() {
	if (document.iform.beginport.selectedIndex == 0) {
		document.iform.beginport_cust.disabled = 0;
	} else {
		document.iform.beginport_cust.value = "";
		document.iform.beginport_cust.disabled = 1;
	}
	if (document.iform.endport.selectedIndex == 0) {
		document.iform.endport_cust.disabled = 0;
	} else {
		document.iform.endport_cust.value = "";
		document.iform.endport_cust.disabled = 1;
	}
	if (document.iform.localbeginport.selectedIndex == 0) {
		document.iform.localbeginport_cust.disabled = 0;
	} else {
		document.iform.localbeginport_cust.value = "";
		document.iform.localbeginport_cust.disabled = 1;
	}
}

function ext_rep_change() {
	document.iform.endport.selectedIndex = document.iform.beginport.selectedIndex;
	document.iform.localbeginport.selectedIndex = document.iform.beginport.selectedIndex;
}


function proto_change() {
	if(document.iform.proto.selectedIndex > 3) {
		document.iform.beginport_cust.disabled = 1;
		document.iform.endport_cust.disabled = 1;
		document.iform.beginport.disabled = 1;
		document.iform.endport.disabled = 1;
		document.iform.localbeginport_cust.disabled = 1;
		document.iform.localbeginport.disabled = 1;		
	} else {
		document.iform.beginport_cust.disabled = 0;
		document.iform.endport_cust.disabled = 0;
		document.iform.beginport.disabled = 0;
		document.iform.endport.disabled = 0;
		document.iform.localbeginport_cust.disabled = 0;
		document.iform.localbeginport.disabled = 0;		
	}
	
}

window.onload = function () {
	var oTextbox1 = new AutoSuggestControl(document.getElementById("localip"), new StateSuggestions(addressarray));
	var oTextbox2 = new AutoSuggestControl(document.getElementById("beginport_cust"), new StateSuggestions(customarray));
	var oTextbox3 = new AutoSuggestControl(document.getElementById("endport_cust"), new StateSuggestions(customarray));
	var oTextbox4 = new AutoSuggestControl(document.getElementById("localbeginport_cust"), new StateSuggestions(customarray));
}

//-->
OpenPOWER on IntegriCloud