function createRequestPage()
{
    var ro;
    var browser = navigator.appName;
    if(browser == "Microsoft Internet Explorer")ro = new ActiveXObject("Microsoft.XMLHTTP");
    else ro = new XMLHttpRequest();
    return ro;
}
var httpPage = createRequestPage();

function fillDIV(rasd,vid,id,lang,foto)
{
    var str = "http://www.chepr.ru/index.php?rasd="+rasd+"&vid="+vid+"&id="+id+"&lang="+lang+"&foto="+foto;
    httpPage.open('get', str);
    httpPage.onreadystatechange = handleResponsePage;
    httpPage.send(null);
}

function handleResponsePage()
{
    if(httpPage.readyState == 4)
    {
        var tp = httpPage.responseText.substring(httpPage.responseText.indexOf('<!--DVB-->')+10);
        var sta = tp.indexOf('<');

        var end = tp.indexOf('<!--DVE-->');
        document.getElementById("divPage").innerHTML = tp.substring(sta, end - sta);
    }
}

