function stateChanged(objectId) //for use in AJAX functions, receives the result and inserts it into page //DO NOT CHANGE
{
alert("status=" + xmlHttp.status + "\nstate=" + xmlHttp.readyState);
if(xmlHttp.readyState==4 || xmlHttp.readyState=='complete')
{
alert('complete');
document.getElementById(objectId).innerHTML = xmlHttp.responseText;
}
}
function insertNoteAJAX(repairid,note,submitter) //AJAX portion of insertNote(repairid)
{
var url = "insertnote.ajax.php";
var rnd = Math.random();
xmlHttp.onreadystatechange = stateChanged('entry_'+repairid);
xmlHttp.open("POST",url,true);
var params = "repairid="+encodeURI(repairid)+"¬e="+encodeURI(note)+"&submitter="+encodeURI(submitter)+"&sid="+rnd;
xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
//xmlHttp.setRequestHeader("Content-length", params.length);
//xmlHttp.setRequestHeader("Connection", "close");
xmlHttp.send(params);
}
|