﻿function ExpandComponent(x)
{
	if (document.getElementById(x).style.display != "block")
	{
		document.getElementById(x).style.display = "block";
		document.getElementById(x + '_control').innerHTML = "Collapse"; 
	}
	else
	{
		document.getElementById(x).style.display = "none"
		document.getElementById(x + '_control').innerHTML = "Expand";
    }
}

function UnloadGoogleMap()
{
    try
    {
        if (typeof(GUnload) == "function")
        {
            GUnload();
        }
    }
    catch(e)
    {
    }
}

function LoadGoogleMap()
{
    try
    {
        if (typeof(GLoad) == "function")
        {
            GLoad();
        }
    }
    catch(e)
    {
        alert(e)
    }
}
