
var googleMap;

window.onload = Load;

function Load(){
	if(isdefined(googleMap)){
		ShowMap();
		//alert('True');
	}
	else{
		//alert('False');
	}
}

function isdefined(variable)
{
	return typeof(variable) != "undefined";
}