   //Google Earth Window       
    function showGE() {
        $("#earth").css({ 'width': '85%', 'height': '40%', 'background-color': 'transparent' });
        $("#earth_controls").show(2000);
        $('#small_screen').hide();
        $('#large_screen').show();
	$('#showGE').hide();

    }

    function hideGE() {
        $('#earth').animate({ 'width': '0' }, "slow");
        $('#earth_controls').hide();
        $('#showGE').show();
    }

    $("#large_screen").click(function () {
        $('#earth').animate({ 'width': '100%', 'height': '100%' }, "slow");
        $('#earth').css({ 'background-color': 'white' });
        $('#divSearchResults').hide("slow");
        $('#divGetDirections').hide("slow");
        $('#large_screen').hide();
        $('#small_screen').show();

    });

    $("#small_screen").click(function () {
        $('#earth').animate({ 'width': '85%', 'height': '40%' }, "slow");
        $('#earth').css({ 'background-color': 'transparent' });
        $('#large_screen').show();
        $('#small_screen').hide();
	$('#showGE').hide();

    });


//---------------------------------------------------------------------------
    //Buttons
    $("#btnSearchResults").click(function () {
        $('#divSearchResults').toggle("slow").css({"visibility":"visible"});
        $('#divGetDirections').hide();
	$('#btnSearchResults').hide();
    });

    $("#btnGetDirections").click(function () {
        $('#divGetDirections').toggle("slow");
        $('#divSearchResults').hide();
	$('#btnSearchResults').hide();
    });

    $("#btnHelp").click(function () {
        $('#divHelp').toggle("slow");

    });
