/* Function TEST */
function test(){
	alert("OK");
}


/* Change Accounts according to their Client  */
function accChg(idClientLst){
	var objClient = document.getElementById(idClientLst);
	var lngLst = objClient.getElementsByTagName('option').length;
	var clientid = objClient.options[objClient.options.selectedIndex].value;
	
	/* 	Set div Display:none; for non selected options  
	*	Set div Display:block; for selected option	
	*/
	var val;
	for (i=0; i<lngLst; i++){
		val = objClient.options[i].value;
		if(val != 'value'){
			if(val != clientid){
				var div2load = "chkbxAcc"+val;
				document.getElementById(div2load).style.display = 'none';
			}else{
				var div2load = "chkbxAcc"+val;
				document.getElementById(div2load).style.display = 'block';
			}
		}

	}
}
