// JavaScript Document
function GetRequestObject()
 {
  
 if (window.XMLHttpRequest)
  {

  //code for Mozilla, IE7>, Opera, Chrome, Safari
  return new XMLHttpRequest();
  
  }
  if (window.ActiveXObject)
   { 
     // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
   }
   
   return null;
 }
 
function Excecute_request(login)
  {
  document.getElementById("check_log").innerHTML='<div align="right" style="font-size: 0.8em;display: inline;">проверка...</div>';
  if (login.length==0)
    {
    document.getElementById("check_log").innerHTML="Введите логин";
    }
   
  xmlhttp=GetRequestObject();
  
   if (xmlhttp==null)
    {
    alert("Ваш браузер не поддерживает запрос логина");
    }
  var url="http://wishescalculator.com/optimvibor_check_log.php?";
  url=url + "login=" + login;
  url=url + "&sid=" + Math.random();
  xmlhttp.onreadystatechange=PutCode;  
  xmlhttp.open("GET",url,true);
  xmlhttp.send(null);  

  } 
 
function PutCode()
 {
 if (xmlhttp.readyState==4)
  {
   document.getElementById("check_log").innerHTML=xmlhttp.responseText;
//   alert("Ваш запрос логина");
  }
 }  
