function geoGetCoords($address) {
        $_url = 'http://saya.s145.xrea.com/x/geocode.cgi';
        $_url .= sprintf('?addr=%s&mode=WGS', rawurlencode($address));

        $_result = false;

        if($_result = file_get_contents($_url)) {

            ereg('<x>(.*)</x>.*<y>(.*)</y>', $_result, $_match);

            $_coords['lon'] = $_match[1];
            $_coords['lat'] = $_match[2];

        }

        return $_coords;
    }