function fn_ogapi_loadwidget(){
    var xmlHttpReq = false;
    var strURL = "http://www.offergrid.com/widgetLoader.php?cityname=bangalore&cats=travel&dealtype=1&country=India&type=2";

        var el = document.createElement("iframe");
        el.setAttribute('id', 'ifrm');
        el.setAttribute('height', '300');
        el.setAttribute('width', '360');
        el.setAttribute('style', 'border:none');
        var cdiv = document.getElementById('og_dealbox');
        cdiv.appendChild(el);
        el.setAttribute('src', strURL);

}


