lastselectedm ='';lastselecteds ='';function csm(obj){	var normc ='#FF9933';	var normb ='white';	obj.style.background = '#DCDCDC';	obj.style.color      = '#1464F4';	if(lastselectedm != '' && lastselectedm != obj){		lastselectedm.style.background = normb;		lastselectedm.style.color      = normc;	}	lastselectedm = obj;		}function css(obj){	var normc ='#808080';	var normb ='#EDEDED';	obj.style.background = '#DCDCDC';	obj.style.color      = '#1464F4';	if(lastselecteds != '' && lastselecteds != obj){		lastselecteds.style.background = normb;		lastselecteds.style.color      = normc;	}	lastselecteds = obj;		}function axLoad(url,id){  //alert(url);  if (document.getElementById){    var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();  }  if (x){    x.onreadystatechange = function() {      if (x.readyState == 4 && x.status == 200) {        el = document.getElementById(id);        el.innerHTML = x.responseText;      }    }    x.open("GET", url, true);    x.send(null);  }}