﻿var xmlHttp

function assignToPage(contentId, pageId) {
    xmlHttp=GetXmlHttpObject()
    if (xmlHttp==null) {
        alert ("Browser does not support HTTP Request")
        return
    }
    var url = "/web/admin/assignContentToPage.php"
    url = url + "?contentId=" + contentId
    url = url + "&pageId=" + pageId
    url = url + "&sid=" + Math.random()
    xmlHttp.onreadystatechange = stateChanged
    xmlHttp.open("GET", url, true)
    xmlHttp.send(null)
}

function countPrice(fromDay, fromMonth, fromYear, tillDay, tillMonth, tillYear) {
    xmlHttp=GetXmlHttpObject()
    if (xmlHttp==null) {
        alert ("Browser does not support HTTP Request")
        return
    }
    var url = "/pro-firmy/rozsireny-profil-price-count"
    url = url + "?from=" + fromYear + '-' + fromMonth + '-' + fromDay
    url = url + "&till=" + tillYear + '-' + tillMonth + '-' + tillDay
    url = url + "&sid=" + Math.random()
    xmlHttp.onreadystatechange = stateChanged
    xmlHttp.open("GET", url, true)
    xmlHttp.send(null)
}

function stateChanged() {
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
        document.getElementById("txtHint").innerHTML=xmlHttp.responseText 
    }
}

function GetXmlHttpObject() {
    var xmlHttp=null;
    try {
     // Firefox, Opera 8.0+, Safari
     xmlHttp=new XMLHttpRequest();
    } catch (e) {
        //Internet Explorer
        try {
            xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
    }
    return xmlHttp;
}

