﻿    var xmlHttp1=null;
    function GetxmlHttp1RequestObject(){
        try {
            // Firefox, Opera 8.0+, Safari
            xmlHttp1=new xmlHttpRequest();
        }
        catch (e){
            //Internet Explorer
            try{
                xmlHttp1=new ActiveXObject("Msxml2.XMLHTTP");
            }catch (e){
                xmlHttp1=new ActiveXObject("Microsoft.XMLHTTP");
            }
        }
        return xmlHttp1;
    }//function
    function HandleResponseMess(mymid) { 
        if (xmlHttp1.readyState==4 || xmlHttp1.readyState=="complete"){
            document.getElementById("ShowMyInfo").innerHTML=xmlHttp1.responseText;
        } 
        

    }//function
    function showMemberInfo(mid,tid){ 
        xmlHttp1=GetxmlHttp1RequestObject();
        var requestUrl="ForeningBjudInView.aspx?Mid="+mid+"&Tid="+tid;
        if(xmlHttp1)
        {
            xmlHttp1.onreadystatechange= function () {
					if (xmlHttp1.readyState == 4) {
						HandleResponseMess(mid);
					}
			};
			xmlHttp1.open("GET", requestUrl,  true);
            xmlHttp1.send(null);   
			
        }//if
    }//function





