function editCoordinate(x,y){
  lat_ctl = document.getElementById("latitude");
  long_ctl = document.getElementById("longitude");
  lat_ctl.value = y;
  long_ctl.value = x;
}

function openFixedPopup(url){
  window.open(url, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=180,top=100,width=700,height=600');
}

function openPopup(url,width, height){
  window.open(url, '', 'toolbar=0,scrollbars=1,location=0,status=NO,menubar=0,resizable=1,left=180,top=100,width='+width+',height='+height);
}

function getAddress(address_query) {
    items = XMLRPC.call(portal_url + '/geolocation_tool', "locateAddress", address_query);
    if (items!='') {
        centerMap(items[1],items[0]);
        restoreButton();
    } else {
        restoreButtonNotFound();
    }
}

