//verkoop item regel toevoegen
var xmlhttp_mailing;
function insert_mailingadres(cmd)
{
	
xmlhttp_mailing=GetXmlHttpObject();
if (xmlhttp_mailing==null)
  {
  alert ("Your browser does not support XMLHTTP!");
  return;
  }
var url="insert_mailingadres.php";

xmlhttp_mailing.onreadystatechange=stateChanged_mailing;
xmlhttp_mailing.open("POST",url,true);

var params = "";
params = "cmd=" + cmd;
params += "&ps4andgames=" + document.getElementById("ps4andgames").checked;
params += "&newsarticle=" + document.getElementById("newsarticle").checked;
params += "&naam=" + document.getElementById("naam").value;
params += "&emailadres=" + document.getElementById("emailadres").value;

//alert(params);

xmlhttp_mailing.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp_mailing.send(params);
}

function stateChanged_mailing()
{
if (xmlhttp_mailing.readyState==4)
  {
   document.getElementById("nieuwsbriefdiv").innerHTML=xmlhttp_mailing.responseText;
  }
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}
