/**
 * @author nick
 */
if (google) {
    var geoLocation = google.loader.ClientLocation;
    if (typeof(geoLocation) !== null && Cookie.read("googleGeo") === null) {
        var geoCookie = Cookie.write('googleGeo', JSON.encode(geoLocation), {
            path: '/'
        });
    }
}