/*@cc_on 
var doc = document;
eval('var document = doc');
@*/

var xmlhttpSelectHistory;

//■■SelectHistory
function SelectHistory(rootp,page){
    var rootp,page;
    var url = "../incweb/SecCookie.php";

    url = url + "?mode=" + encodeURI('_secHistory');
    url = url + "&rootp=" + encodeURI(rootp);
    url = url + "&page=" + encodeURI(page);
    url = url + "&sid=" + Math.random();

    xmlhttpSelectHistory = GetXmlHttpObject();
    if(xmlhttpSelectHistory == null){
        return;
    }
    xmlhttpSelectHistory.onreadystatechange = stateChangedHistory;
    xmlhttpSelectHistory.open("GET",url,true);
    xmlhttpSelectHistory.send(null);
}

//■stateChangedHistory
function stateChangedHistory(){
    if(xmlhttpSelectHistory.readyState == 4){
         document.getElementById("ShowsecHistory").innerHTML=xmlhttpSelectHistory.responseText;
         //$("#ShowsecHistory").html(xmlhttpSelectHistory.responseText);
    }
}
