function goToURL(Url) { window.location = Url; }


function $(element) { return document.getElementById(element); }
function $S(element) { return document.getElementById(element).style; }
var a_crawl = $('a_crawl');
var s = 0;
var mainCurr = 0;
var l;
var crawlCurr = 0;
var lastMainPlace;
var mainOther = new Array(0, 1, 2, 3, 4, 5);

function cc(indx) {
    if (lastMainPlace != indx) {
        for (i = 0; i < 7; i++) {
            document.getElementById('divMain' + i).style.display = 'none';
            document.getElementById('divMainTitle' + i).className = '';
        }
        document.getElementById('divMain' + indx).style.display = 'inline';
        document.getElementById('divMainTitle' + indx).className = 'sel';
        
        lastMainPlace = indx;
    }
}


function MM_openBrWindow(theURL,winName,features) { window.open(theURL,winName,features); }
