/**
 * GetLocation 
 *
 */
function GetLocation(strUrl)
{
    if (window.location.replace)
    {
        window.location.replace(strUrl);
    }
    else
    {
        window.location = strUrl;
    }
}
