/*var loadstatuswait="moment";*/

/* video kommentare seiten */
function searchPLZ(plz) {
    try {
		req2 = window.XMLHttpRequest?new XMLHttpRequest():
        new ActiveXObject("Microsoft.XMLHTTP");
    } catch (e) {
    //Kein AJAX Support
    }
	req2.onreadystatechange = handlesearchPLZ;
    /*document.getElementById('symbol').innerHTML = loadstatuswait;*/
	req2.open('get', '/german/ajax_logistik.html?plz='+ plz);
    req2.send(null);
    req2.plz = plz;
}

function handlesearchPLZ() {
	if ((req2.readyState == 4) && (req2.status == 200)) {
		document.getElementById('symbol').innerHTML = req2.responseText;
    }
}

