/***********************************************************************************************/

/* Widget File */
/* Widget JS file */

/***********************************************************************************************/
window.Blogadda = window.deepali || {};
Blogadda.Widget = function(options) {
options = options || {};
var id = options.id || '_Blogadda_widget' + (Math.ceil(Math.random() * (new Date).getTime()));
var height = options.height || '1100';
var url = options.url || '10.0.0.4/ib/wigdet.php';
var width = options.width || '200';
var html = '<iframe overflow="auto" scrolling="no" frameborder="0" height="' + height + '" src="' + url + '" width="' + width + '"></iframe>';
document.write(html);
}
