

var categoria = false;

function slowcategorie() {


categoria = false;

if (window.XMLHttpRequest) { // Mozilla, Safari,...

categoria = new XMLHttpRequest();

if (categoria.overrideMimeType) {
categoria.overrideMimeType('text/html');
// See note below about this line
}


} else if (window.ActiveXObject) { // IE
try {
categoria = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
categoria = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}

}

if (!categoria) {
            alert('Giving up :( Cannot create an XMLHTTP instance');
            return false;
        }
        categoria.onreadystatechange = categoriaContents;
        categoria.open('post', '/_tools/_ajax/categorie.lasso', 'true');
        categoria.send(null);
		

}

function categoriaContents() {

        if (categoria.readyState == 4) {
            if (categoria.status == 200) {
                document.getElementById('view_categorie').innerHTML = categoria.responseText;
				
            }
        }

    }
	

