// JavaScript Document

function update_helling_algemeen(id,lat,lon) {
var url = "../update/big_algemeen.php?id="+id+"&lat="+lat+"&lon="+lon;
xmlHttp2 = GetXmlHttpObject( function div_paginatitelslijst() {
if (xmlHttp2.readyState == 4 || xmlHttp2.readyState == "complete") {
if ( xmlHttp2.status == 200 ) {
document.getElementById('update').innerHTML = xmlHttp2.responseText;
} else alert ( xmlHttp2.statusText );
}
} );
xmlHttp2.open("GET", url , true);
xmlHttp2.send( null );
}
function update_helling_algemeen(id,lat,lon,description) {
var url = "../update/big_algemeen.php?id="+id+"&lat="+lat+"&lon="+lon+"&description="+description;
xmlHttp2 = GetXmlHttpObject( function div_paginatitelslijst() {
if (xmlHttp2.readyState == 4 || xmlHttp2.readyState == "complete") {
if ( xmlHttp2.status == 200 ) {
document.getElementById('update').innerHTML = xmlHttp2.responseText;
} else alert ( xmlHttp2.statusText );
}
} );
xmlHttp2.open("GET", url , true);
xmlHttp2.send( null );
}