// determines if iframe should pull search info from parent url if the iframe url does not contain search params
function checkSearchQueryString()
{
    var qs = new Querystring()
    // check existence of all requred search params
    if (qs.get("q") == null)
    {
        window.location.href = window.location.href + parent.location.search;
    }
}

