tmp=(mWindow_width=='600')?'/menus/js/resize_max.png':'/menus/js/resize_min.png';

document.write('<div style="position:absolute;right:10;top:10;width:16;height:16;"><a href="" onclick="javascript:return false;" title="Adjust Width"><img width="16" height="16" id="icon_min_max" src="'+tmp+'" alt="Adjust Width" border="0" onclick="wSwitch()"></a></div>');

function wSwitch()
{
  now=new Date();
  a=document.getElementById('mwindow');
  if(a)
  {
    if(a.width==600)
    {
      a.width='100%';
      document.getElementById('icon_min_max').src='/menus/js/resize_min.png';
      if(navigator.cookieEnabled)
      {
        document.cookie='wide=1; path=/';
      }
    }
    else
    {
      a.width='600';
      document.getElementById('icon_min_max').src='/menus/js/resize_max.png';
      if(navigator.cookieEnabled)
      {
        document.cookie='wide=0; path=/';
        if(navigator.appName.search('Opera')!=-1)
        {
          location=location;
        }
      }
    }
  }
}
