				        var req;				        function processAction(xslName,showDivID,mpTree,dataNodeId,oldNodeid,idx){     				          				          document.getElementById('xMore').href = "np.asp?ctnode=" +  oldNodeid + "&mp=" +mpTree;
				          document.getElementById('loadingStatus').style.display="";				          					     //   var url="tungmp.asp?mp="+mpTree+"&ctnode="+dataNodeId;					       var url="GetLpURL.asp?mp="+mpTree+"&ctnodeid="+dataNodeId;   					        					    tabSwitch(idx);					        					        if (window.XMLHttpRequest) {						        req = new XMLHttpRequest();						        if (req.overrideMimeType) {                			        req.overrideMimeType('text/xml');            			        }					        } else if (window.ActiveXObject) {						        try {							        req = new ActiveXObject("Msxml2.XMLHTTP");						        } catch (e) {			                        try {			                            req = new ActiveXObject("Microsoft.XMLHTTP");			                        } catch (e) {alert('cant create ActiveXObject!! ')}			                    }            											        }					        req.open("GET", url, true);					        req.onreadystatechange = function(){callback(showDivID);}					        req.send(null);		  					        }        		        						        function callback(showDivID){					        if (req.readyState == 4) {						        if (req.status == 200) {							        changeContent(showDivID);						        } else {							        alert('There was a problem with the request...('+req.status+')');						        }					        }			  		        }        		  			  		        function changeContentXML(showDivID){		  			        var divObj=document.getElementById(showDivID);		  			        var xmlDoc=req.responseXML.documentElement;		  			       // var showContent=xmlDoc.getElementsByTagName('SHOWTOPIC')[0];		  			        var nodes = xmlDoc.getElementsByTagName('Article');		  			        var contentStr="";		  			        if(nodes!=null){		  			        var temp;		  				        for(var i=0;i<nodes.length;i++){		  					        contentStr+=((i+1)+"."+nodes[i].childNodes[0].nodeValue+"\n");		  				        }		  			        }		  			        divObj.innerHTML=showContent.childNodes[0].firstChild.nodeValue;		  			       		  		        }        		  			  		        function changeContent(showDivID){		  			        var divObj=document.getElementById(showDivID);		  			        divObj.innerHTML=req.responseText;            		         document.getElementById('loadingStatus').style.display="none";		  		        }            		  	function tabSwitch(idx){ 
 classStyle="";
 for(var i=1;i<=7;i++){
		 classStyle=(i==parseInt(idx)?"yes":"");
		  document.getElementById('div_title'+i).className=classStyle;
		  			        }
		  		        }
 