function nuarataform()
  {
    document.getElementById("formularcon").style.visibility = 'hidden';
    document.getElementById("opac").style.visibility = 'hidden';
    document.getElementById("formularconrasp").style.visibility = 'hidden';
  }

function arataform()
  {
marimehopacoff=document.body.offsetHeight;
marimehopac=document.body.clientHeight;
marimehopac2=marimehopacoff+marimehopac;
document.getElementById("opac").style.height = marimehopac2;
myWidth = document.body.clientWidth;
jumsuma = myWidth/2;
suma = jumsuma-280;
myHeight = document.body.clientHeight;
jumsumah = myHeight/2;
sumah = jumsumah-156;
document.getElementById("formularcon").style.visibility = 'visible';
document.getElementById("formularcon").style.marginLeft = suma;
document.getElementById("formularcon").style.marginTop = sumah;
document.getElementById('opac').style.visibility = 'visible';
    
    
  }





function getHTTPObject(){
      if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
      else if (window.XMLHttpRequest) return new XMLHttpRequest();
      else {
      alert("Your browser does not support AJAX.");
      return null;
      }
    }

function doWork(){

      httpObject = getHTTPObject();
      if (httpObject != null) {
      httpObject.open("GET", "send-contactrapid.php?nume="
      +document.getElementById('nume').value+"&telefon="+document.getElementById('telefon').value+"&site="+document.getElementById('site').value+"&email="+document.getElementById('email').value+"&mesaj="+document.getElementById('mesaj').value+"&pagina="+window.location.href, true);
      httpObject.send(null);
      httpObject.onreadystatechange = setOutput;
      }
    }

function setOutput(){
      if(httpObject.readyState == 4){
document.getElementById("formularcon").style.visibility = 'hidden';
myWidth = document.body.clientWidth;
jumsuma = myWidth/2;
suma = jumsuma-280;
myHeight = document.body.clientHeight;
jumsumah = myHeight/2;
sumah = jumsumah-156;
document.getElementById("formularconrasp").style.marginLeft = suma;
document.getElementById("formularconrasp").style.marginTop = sumah;
document.getElementById("formularconrasp").style.visibility = 'visible';

      }
      }




