function LanguageRedirect( Url, Language )
{
    if ( Url.indexOf( "?" ) >= 0 )
    {
        {
            // Query string does not contain culture so add it.
            Url +=  '&culture=' + Language;
        }
    }
    else
    {
        // There is no query string in the specified URL.
         Url += '?culture=' + Language;
    }

    window.location = Url;
}
