//
//  JS for Frame class
//
//  Clio Soleil (clio@PrettyGetter.TV)
//  PrettyGetter Productions (http://PrettyGetter.TV) 
//  

function F_resize()
{
  //var f = document.getElementsByName("FramedObject");  // doesn't work for IE with objects that don't support NAME parameter
  var f = _getElementsByName("FramedObject", "div");
  for (i = 0; i < f.length; i++)
  {
    var id = ((f[i].id).split("_"))[2];
    var d = document.getElementById("Frame_middle_"+id);
    //d.style.height="auto";
    //d.style.width="auto";
    var h = d.offsetHeight;
    var w = d.offsetWidth;
    document.getElementById("Frame_left_"+id).style.height = h+"px";
    document.getElementById("Frame_right_"+id).style.height = h+"px";
    document.getElementById("Frame_top_"+id).style.width = w+"px";
    document.getElementById("Frame_bottom_"+id).style.width = w+"px";
  }
}
