function defaultWidget(category_id, height, width) {
  height = height || 255;
  width = width || 200;
  
  if (category_id != null) { 
    var outputHTML = '\
    <object type="text/html" data="http://dealzon.com/home/widget?category_id='+category_id+'" height="'+height+'" width="'+width+'">\
      <p>Loading</p>\
    </object>\
    ';
  } else {
    var outputHTML = '\
    <object type="text/html" data="http://dealzon.com/home/widget" height="'+height+'" width="'+width+'">\
      <p>Loading</p>\
    </object>\
    ';
  }
  document.getElementById('dealzon_widget').innerHTML = outputHTML;
}

function articleWidget(id, type, height, width) {
  var outputHTML = '<object type="text/html" data="http://dealzon.com/home/widget?widgetable_id='+id+'&widgetable_type='+type+'" height="300" width="700" class="list_item">';
  outputHTML += '<p>Loading</p>';
  outputHTML += '</object>';
  document.getElementById('article_widget_for_'+type+'_'+id).innerHTML = outputHTML;
}