if (google.loader.ClientLocation) {
	var country      = google.loader.ClientLocation.address.country;
	var country_code = google.loader.ClientLocation.address.country_code;
	var region       = google.loader.ClientLocation.address.region;
	var city         = google.loader.ClientLocation.address.city;
	var referrer     = document.referrer;
	$("document").ready(function() {
		$.post(
			'/lpo/lpo.ajax.php?tm='+new Date().getTime(),
			{
				'country'     :country,
				'country_code':country_code,
				'region'      :region,
				'city'        :city,
				'referrer'    :referrer
			},
			function(data) {
				$('#Flash').ready(function() {
					if ($.flash.available) {
						$('#Flash').flash({
							swf:'Cyuouzemi.swf',
							width:950,
							height:230,
							flashvars: {
								xml:data
							}
						});
					} else {
						//load_picture();
					}
				});
			}
		);
	});
} else {
	$("document").ready(function() {
		if ($.flash.available) {
			$('#Flash').flash({
				swf:'Cyuouzemi.swf',
				width:950,
				height:230,
				flashvars: {
					xml:"images.xml"
				}
			});
		} else {
			//load_picture();
		}
	});
}

