function go_url(webcode) {
        document.location.href=('http://www.eshox.com/index.php?content=' + webcode);
}

function openWindow(URL) {
        centerx = (window.screen.width/2) - 160;
        centery = (window.screen.height/2) - 100;
        method = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=320,height=200';
        windowname = window.open(URL,URL,(method + ',screenX=' + centerx + ',screenY=' + centery + ',left=' + centerx + ',top=' + centery));
}

function getCookie(name) {
        var theCookies = document.cookie;
        var find = name + "=";
        var start = theCookies.indexOf("; " + find);
        if (start == -1) {
                start = theCookies.indexOf(find);
                if (start != 0) return null;
        } else {
                start += 2;
        }
        var end = theCookies.indexOf(";", start);
        if (end == -1) end = theCookies.length;
        return unescape(theCookies.substring(start + find.length, end));
}

