function ajaxSendPOST(xmlpage,data)
{
var xmlh = null;
if(window.XMLHttpRequest)
xmlh = new XMLHttpRequest();
else
try
{ xmlh = new ActiveXObject('Msxml2.XMLHTTP'); }
catch(ex) { xmlh = new ActiveXObject('Microsoft.XMLHTTP'); }
if(xmlh)
{
xmlh.open('post', xmlpage, true);
xmlh.setRequestHeader("Connection", "close");
xmlh.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlh.send(data); // Именно здесь отправляются данные
}
}



function SendPOST()
{
ajaxSendPOST('my_settings.php','btn_ok=1&auto_enter=1');
}
