﻿var xmlHttp;
function CreateXmlHttp()
{
    try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
    catch(e){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
    catch(e){try{xmlHttp=new XMLHttpRequest();}
    catch(e){xmlHttp=false;}}}
}
///xmlHttp处理
function AjaxProcess(url,id)
{
    CreateXmlHttp();    
    xmlHttp.open("GET",url);
    xmlHttp.onreadystatechange=function()
    {
        if(xmlHttp.readyState==4)
            id.innerHTML=xmlHttp.responseText;            
    }
    xmlHttp.send(null);
}
var id;
//获取医者图吧图片列表
function PicBar(pageIndex)
{  
    id=QueryString("id");
    url="MPicBarProess.aspx?id="+id+"&pageIndex="+pageIndex;
    id=$("divPicList");
    AjaxProcess(url,id);
}
//获取中医图谱图片列表
function PicBook(pageIndex)
{ 
    id=QueryString("id");
    url="MPicBookProess.aspx?id="+id+"&pageIndex="+pageIndex;
    id=$("divPicList");
    AjaxProcess(url,id);
}
function $(str)
{
    return document.getElementById(str);
}
