// JavaScript Document

function runJS() {

}

function goRegister(loc) {
    locs = new Array('/web-stranky-zadarmo-eshop', '/index.php?page=register-zivotopis');
    document.location.href = locs[loc];
}
/*
function hackSHMU() {
    
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    } else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState==4 && xmlhttp.status==200) {
            if (xmlhttp.responseText.substr(10, 26) == '<span>Bratislava: <strong>') {
                document.getElementById('pocasie').innerHTML = xmlhttp.responseText;
            } else {
                document.getElementById('pocasie').innerHTML = '';
            }
            hackNBS();
        }
    }
    
    xmlhttp.open('GET', '/ajax/hack_shmu.php', true);
    xmlhttp.send();
}

function hackNBS() {
    
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    } else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }

    xmlhttp.onreadystatechange = function() { 
        if (xmlhttp.readyState==4 && xmlhttp.status==200) {
            if (xmlhttp.responseText.substr(10, 26) != '<span>Bratislava: <strong>') {
                document.getElementById('kurzy').innerHTML = xmlhttp.responseText;
            } else {
                document.getElementById('kurzy').innerHTML = xmlhttp.responseText;
            }
        }
    }
    
    if (document.getElementById('kurzy')) {
        xmlhttp.open('GET', '/ajax/hack_nbs.php?d=' + new Date().getTime(), true);
        xmlhttp.send();
    }
}
*/
