obj=document.getElementById('for_find').parentNode;
if(obj)
{
  if(obj.parentNode)
  {
    newObj=obj.nextSibling;
    while(newObj)
    {
      obj=newObj;
      newObj=obj.nextSibling;
    }
    if(obj)
    {
      if(obj.nodeName=='TD')
      {
        obj.id="mwindow";
        obj.width=mWindow_width;
      }
    }
  }
}
