function AJAX_PHP_v(str) {
if (str.length == 0) { document.getElementById("AJAX_PHP").innerHTML = ""; return;
} else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById("AJAX_PHP").innerHTML = xmlhttp.responseText; }
}
xmlhttp.open('GET', '/js/ajax_php.php?q=' + str, true); xmlhttp.send();
}}
/* web-zagotovki */
function div_js_a(str) {
if(str=='ok'){document.getElementById('div_js').style.transform='scale(1)';}
if(str=='X'){document.getElementById('div_js').style.transform='scale(0)';}
}