
//--------------------------------------------------------------------------------
// remove frames around objects in stupid IE
//--------------------------------------------------------------------------------
function fixObjectImages ()
{
  var objs = document.getElementsByTagName ('object');
  for (n = 0; n < objs.length; n++)
  {
    var obj = objs [n];
    if (obj != null && obj.type != null && obj.type == "text/html")
      fixObject (obj);
  }
}

//--------------------------------------------------------------------------------
function fixObject (obj)
{
  obj.body.style.border = 'none';
  obj.body.style.margin = '0';
  obj.body.style.padding = '0';
  obj.body.style.overflow = 'hidden';
}

