google.load("jquery", "1.2.6");
google.load("jqueryui", "1.5.2");

var geocoder, glatlng1, glatlng2, miledistance, kmdistance;
var hubLoc = "Pittsburgh, Pa";

function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}	

function initialize() {
	var avoidance = getUrlVars()["loc"];
	if(avoidance == 'false') {
		return false;
	}
	else {
		geocoder = new GClientGeocoder();
		showLocation();
	}
}

function showLocation() {
	geocoder.getLocations(hubLoc, function (response) {
		hubLoc = {lat: response.Placemark[0].Point.coordinates[1], lon: response.Placemark[0].Point.coordinates[0], address: response.Placemark[0].address};
		calculateDistance();
	});
}

function calculateDistance()
{
	try
	{
		//alert(google.loader.ClientLocation.address.city);
		glatlng1 = new GLatLng(google.loader.ClientLocation.latitude, google.loader.ClientLocation.longitude);
		glatlng2 = new GLatLng(hubLoc.lat, hubLoc.lon);
		miledistance = glatlng1.distanceFrom(glatlng2, 3959).toFixed(1);
		kmdistance = (miledistance * 1.609344).toFixed(1);
		//alert(miledistance);
		if(miledistance <= 110){ 
			// do nothing //
		}
		else {
			$('#page').html("<div style=\"width: 900px; margin: 0 auto;\"><p align=\"left\"><font color=\"#FFFF00\" size=\"4\">A brand new and exciting web page is coming soon, check back frequently!</font></p><p><a style=\"font-size: 18pt; color: #FF0000; font-weight: bold\" href=\"mailto:events@theflashbox.com\">events@theflashbox.com</a><font color=\"#FF0000\" size=\"5\">1-866-996-7700 Toll Free</font></p></div>");
		}
		
		$('#page').css('visibility', 'visible');
	}
	catch (error)
	{
		$('#page').html("<div style=\"width: 900px; margin: 0 auto;\"><p align=\"left\"><font color=\"#FFFF00\" size=\"4\">A brand new and exciting web page is coming soon, check back frequently!</font></p><p><a style=\"font-size: 18pt; color: #FF0000; font-weight: bold\" href=\"mailto:events@theflashbox.com\">events@theflashbox.com</a><font color=\"#FF0000\" size=\"5\">1-866-996-7700 Toll Free</font></p></div>");
	}
}

window.onload = initialize;
