var encoding_char = new Array('$', '&', '+', ',', '/', ':', ';', '=', '?', '@', ' ', '"', '<', '>', '#', '%', '{', '}', '|', '\\', '^', '~', '[', ']', '`');
var week_day = new Array("Sun", "Mon", "Tue", "Wen", "Thu", "Fri", "Sat");
var month = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var lang_obj, msg_obj, htm_obj, model_obj, help_obj;
var subnet_mask_value = new Array(0, 128, 192, 224, 240, 248, 252, 254, 255);	
var wizard = new Array();
var tx_11b_rate = [{ value: "1", text: "1M"},
	            	 { value: "2", text: "2M"},
	            	 { value: "3", text: "5.5M"},
	            	 { value: "4", text: "11M"}];	            	
	            	 
var tx_11g_rate = [{ value: "5", text: "6M"},
	            	 { value: "6", text: "9M"},
	            	 { value: "7", text: "12M"},
	            	 { value: "8", text: "18M"},
	            	 { value: "9", text: "24M"},
	            	 { value: "10", text: "36M"},
	            	 { value: "11", text: "48M"},
	            	 { value: "12", text: "54M"}];
	            	 
var tx_11n_rate = [{ value: "13", text: "MCS0"},
	            	 { value: "14", text: "MCS1"},
	            	 { value: "15", text: "MCS2"},
	            	 { value: "16", text: "MCS3"},
	            	 { value: "17", text: "MCS4"},
	            	 { value: "18", text: "MCS5"},
	            	 { value: "19", text: "MCS6"},
	            	 { value: "20", text: "MCS7"},
	            	 { value: "21", text: "MCS8"},
	            	 { value: "22", text: "MCS9"},
	            	 { value: "23", text: "MCS10"},
	            	 { value: "24", text: "MCS11"},
	            	 { value: "25", text: "MCS12"},
	            	 { value: "26", text: "MCS13"},
	            	 { value: "27", text: "MCS14"},
	            	 { value: "28", text: "MCS15"}];

/**
 * Get_lang_value() - Constructor for building Get_lang_value Object 
 *
 *	Parameter(s) :
 * 	which_lang : determine which language that user wants to display.
 *
 * Variable(s) :
 *		default_lang : default(English) XML object that contains words
 *		node_value : words from XML
 *
 **/
function Get_lang_value(which_doc,which_id){
	var node_value=get_node_value(which_doc, which_id);
	var default_lang;
	
	if(node_value == ""){
		default_lang = load_xml("xml/lang_Eng.xml");
		node_value=get_node_value(default_lang,which_id);
	}
	
	return node_value;		
}

				
/**
 * Lang_Obj() - Constructor for building Lang_Obj Object 
 *
 *	Parameter(s) :
 * 	which_lang : determine which language that user wants to display.
 *
 * Variable(s) :
 * 	my_lang : XML object that contains words 
 *
 **/
function Lang_Obj(){
	//this.my_lang = load_xml("xml/lang_" + which_lang + ".xml");
	this.my_lang = load_xml("xml/lang.xml");				
}

/**
 * Lang_Obj.prototype - Prototype of Lang_Obj Object 
 *
 * Methods:
 * 	write()	: display words 
 * 	display(): get words
 * 	warning_msg()	: alert warning message
 * 	confirm_msg()  : confirm message
 * 	display_msg()	: display message
 * 	get_msg_node()	: get message element
 **/
Lang_Obj.prototype = {

write:function(which_id){
	
	with(document){				
		write(Get_lang_value(this.my_lang, which_id));
	}	
},	

display:function(which_id){
	
	return Get_lang_value(this.my_lang, which_id);
},

warning_msg:function(which_id, start, end){
	
	if (this.warning_msg.arguments.length == 3){
		alert(Get_lang_value(this.my_lang, which_id) + " " + start + " ~ " + end + ".");
	}else{
		alert(Get_lang_value(this.my_lang, which_id));
	}
},

confirm_msg:function(which_id){
	return confirm(Get_lang_value(this.my_lang, which_id));	
},

display_msg:function(which_id){
	return Get_lang_value(this.my_lang, which_id);	
},

get_msg_node:function(which_id){
	return get_xml_node(this.my_lang, which_id);
}
}

/**
 * Msg_Obj() - Constructor for building Msg_Obj Object 
 *
 *	Parameter(s) :
 * 	which_lang : determine which language that user wants to display.
 *
 * Variable(s) :
 * 	my_lang : XML object that contains warning messages  
 *
 **/
function Msg_Obj(){
 //this.my_lang = load_xml("xml/msg_" + which_lang + ".xml");
	//this.my_lang = load_xml("xml/msg.xml");
	this.my_lang = load_xml("xml/lang.xml");
}

/**
 * Msg_Obj.prototype - Prototype of Msg_Obj Object 
 *
 * Methods:
 * 	warning_msg()	: alert warning message
 *		confirm_msg()  : confirm message
 *		display_msg()	: display message
 * 	get_msg_node()	: get message element
 * 	
 **/
Msg_Obj.prototype = {

warning_msg:function(which_id, start, end){
	
	if (this.warning_msg.arguments.length == 3){
		alert(Get_lang_value(this.my_lang, which_id) + " " + start + " ~ " + end + ".");
	}else{
		alert(Get_lang_value(this.my_lang, which_id));
	}
},

confirm_msg:function(which_id){
	return confirm(Get_lang_value(this.my_lang, which_id));	
},

display_msg:function(which_id){
	return Get_lang_value(this.my_lang, which_id);	
},

get_msg_node:function(which_id){
	return get_xml_node(this.my_lang, which_id);
}
}

/**
 * Html_Obj() - Constructor for building Html_Obj Object 
 *
 *	Parameter(s) :
 * 	
 *
 * Variable(s) :
 * 	my_xml : XML object that contains html name that refer to database's table 
 *
 **/
function Html_Obj(){
	this.my_xml = load_xml("xml/html_info.xml");	
}

/**
 * Html_Obj.prototype - Prototype of Html_Obj Object 
 *
 * Methods: 
 * 	get_value()	: get element's value by id
 * 	
 **/
Html_Obj.prototype = {

get_value:function(which_id){
	return get_node_value(this.my_xml, which_id);
}
}

/**
 * Model_Obj() - Constructor for building Model_Obj Object 
 *
 *	Parameter(s) :
 * 	
 *
 * Variable(s) :
 * 	my_xml : XML object that contains Model Name and Hardware version
 *
 **/
function Model_Obj(){
	this.my_xml = load_xml("xml/model_info.xml");				
}

/**
 * Model_Obj.prototype - Prototype of Model_Obj Object 
 *
 * Methods:
 * 	get()	: get element's value by id 
 * 	
 **/
Model_Obj.prototype = {

get:function(which_id){
	with(document){				
		write(get_node_value(this.my_xml, which_id));
	}
}
}

/**
 * Help_Obj() - Constructor for building Help_Obj Object 
 *
 *	Parameter(s) :
 * 	which_lang : determine which language that user wants to display.
 *
 * Variable(s) :
 * 	my_lang : XML object that contains words 
 *
 **/
function Help_Obj(){
 //this.my_lang = load_xml("xml/help_" + which_lang + ".xml");
	this.my_lang = load_xml("xml/help.xml");				
}

/**
 * Help_Obj.prototype - Prototype of Help_Obj Object 
 *
 * Methods:
 * 	write()	: display words 
 * 	
 **/
Help_Obj.prototype = {

write:function(which_id){
	
	with(document){				
		write(get_node_value(this.my_lang, which_id));
	}	
}
}
/**
 * Addr_Obj() - Constructor for building Addr_Obj Object 
 *
 *	Parameter(s) :
 * 	addr 			:	IP address
 *		e_msg			:	the warning messages of IP address
 *		is_network	:	indicate this IP address a network address or not
 *
 * Variable(s) :
 * 	addr 			:	IP address
 *		e_msg			:	the warning messages of IP address
 *		is_network	:	indicate this IP address a network address or not
 *
 **/
function Addr_Obj(addr, e_msg, is_network){
	this.addr = addr;
	//this.e_msg = msg_obj.get_msg_node(e_msg);	
	this.e_msg = e_msg;	
	this.is_network = is_network;
}

/**
 * Variable() - Constructor for building Varible Object 
 *
 *	Parameter(s) :
 * 	var_value 	:	the value of variable
 *		e_msg			:	the warning messages of variable
 *		min			:	the minimal value of variable 
 *		max			:	the maximal value of variable
 *		is_even		:	indicate the variable is even number only or not
 *
 * Variable(s) :
 * 	var_value 	:	the value of variable
 *		e_msg			:	the warning messages of variable
 *		min			:	the minimal value of variable 
 *		max			:	the maximal value of variable
 *		is_even		:	indicate the variable is even number only or not
 *
 **/
function Variable(var_value, e_msg, min, max, is_even){
	this.var_value = var_value;
	//this.e_msg = msg_obj.get_msg_node(e_msg);
	this.e_msg = e_msg;
	this.min = min;
	this.max = max;
	this.is_even = is_even;
}

/**
 * RADIUS_SERVER( ) - Constructor for building RADIUS_SERVER Object 
 *
 *	Parameter(s) :
 *		ip_addr	   	: radius server's IP address
 *    port    			: radius server's port
 *    shared_secret 	: radius server's shared_secret
 *
 * Variable(s) :
 *    ip_addr	   	: radius server's IP address
 *    port    			: radius server's port
 *    shared_secret 	: radius server's shared_secret
 *
 **/
function RADIUS_SERVER(addr, port, shared_secret){
	this.addr = addr;	
	this.port = port;
	this.shared_secret = shared_secret;
}

/**
 * XMLRequest( ) - Constructor for building XMLRequest Object 
 
 *	Parameter(s) :
 * 	onReqComp : the function that you want to perform after receive response from the web server
 *
 * Variable(s) :
 * 	http_req   :  user custom function for performing post response.
 * 	onReqComp  :  user custom function for performing post response.
 *
 **/
function XMLRequest(onReqComp, onReqUncomp){
	this.http_req = create_http_request();	
	this.onReqComp = onReqComp;	
	
	if (XMLRequest.arguments.length > 1){
		this.onReqUncomp = onReqUncomp;
	}
}

/**
 * XMLRequest.prototype - Prototype of XMLRequest Object 
 *
 * Data members:
 * 	READY_STATE_***:  ready state constants
 *
 * Methods:
 * 	loading_xml()		:  get remote xml document
 * 	exec_cgi()			:  requesting server performing CGI command
 *  	get_login_level() :  get user's login level
 * 	onReadyState()		:  callback function while readystate changing
 **/
XMLRequest.prototype = {

READY_STATE_UNINITIALIZED 	: 0,
READY_STATE_LOADING 			: 1,
READY_STATE_LOADED 			: 2,
READY_STATE_INTERACTIVE 	: 3,
READY_STATE_COMPLETE 		: 4,


loading_xml: function(which_url){	
	var req_url = which_url + "?" + Math.random();
	var obj = this;
			
	if (this.http_req){
		this.http_req.onreadystatechange = function() {obj.onReadyState.call(obj)};				
		this.http_req.open('GET', req_url, true);
		this.http_req.setRequestHeader('Cache-Control', 'no-cache');
		this.http_req.send(null);	
		return true;	
	}
	
	return false;
},

exec_cgi: function(para){
	var req_url = "my_cgi.cgi?" + Math.random();
	var obj = this;
		
	if (this.http_req){	
		this.http_req.onreadystatechange = function() {obj.onReadyState.call(obj)};				
		this.http_req.open('POST', req_url, true);
		this.http_req.setRequestHeader("If-Modified-Since","0");	
		this.http_req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		this.http_req.setRequestHeader("Content-length", para.length);				
		this.http_req.setRequestHeader("Connection", "close");
		this.http_req.send(para);		
		
		return true;
	}			
	
	return false;			
},

get_login_level: function(){	
	var req_url = "my_cgi.cgi?" + Math.random();
	var which_para = "request_cgi=check_user_level";
	var obj = this;
			
	if (this.http_req){
		this.http_req.onreadystatechange = function() {obj.onReadyState.call(obj)};	
		this.http_req.open('POST', req_url, true);
		this.http_req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		this.http_req.setRequestHeader('Content-length', which_para.length);	
		this.http_req.setRequestHeader('Connection', 'close');
		this.http_req.send(which_para);							
		return true;	
	}
	
	return false;
},

onReadyState: function(){
	var http_req = this.http_req;
	
	switch (http_req.readyState) {
		case this.READY_STATE_UNINITIALIZED:
			break;
			
		case this.READY_STATE_LOADING:
			break;
			
		case this.READY_STATE_LOADED:
			break;
			
		case this.READY_STATE_INTERACTIVE:
			break;
			
		case this.READY_STATE_COMPLETE:
			if (http_req.status == 200){
				this.onReqComp.call(this, this.http_req);
			}else{				
							
				//if (http_req.status == 0){
					if (this.onReqUncomp){
						this.onReqUncomp.call(this, this.http_req);		
					}
				//}	
							
			}				
			break;
		default:
			break;
	}	
}
}


/**
 * HASH( ) - Constructor for building HASH Object 
 
 *	Parameter(s) :
 * 	
 *
 * Variable(s) :
 * 	obj   :  an Array to store HASH_OBJECT's name and value
 *
 **/
function HASH_TABLE(){	
	this.hash_table = new Array();	
}


HASH_TABLE.prototype = {

clear: function(){
	this.hash_table = new Array();
},

get: function(key){
	return this.hash_table[key];
},

put: function(key, value){
	if (key == null || value == null) {
		throw "NullPointerException {" + key + "},{" + value + "}";
	}else{
		this.hash_table[key] = value;
	}
},

size: function(){
	var size = 0;
    
	for (var i in this.hash_table){
		if (this.hash_table[i] != null){
    		size++;
    	}
	}
   
   return size;
},

isEmpty: function(){
   return (parseInt(this.size()) == 0) ? true : false;
}

}


//add by Luke
//filter \" to fix <font color=\"\"> color error
function lang_obj_filter(which_id)
{
	var msg=lang_obj.display(which_id);
	with(document){				
		write(msg.replace(/\\"/g,"\""));
	};
	return;
};
