<!--
function implode()
 {
  var winreswidth=window.screen.availWidth;
  var winresheight=window.screen.availHeight;
  var resspeed=100;
  var wspeed=winreswidth/resspeed;
  var winheight=winresheight;
  var winwidth=winreswidth;

  LeftPosition=0;
  var y=-10;
  while(y)
  {
   self.resizeBy(0,y);
   TopPosition=(winresheight-winheight)/2;
   self.moveTo(LeftPosition,TopPosition);
   winheight+=y;
   if (winheight<50) y=0;
  }

  var x=-wspeed;
  while (x)
  {
   self.resizeBy(x,0);
   LeftPosition=(winreswidth-winwidth)/2;
   self.moveTo(LeftPosition,TopPosition);
   winwidth+=x;
   if (winwidth<10) x=0;
  }


 self.close();
 }

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}
//-->

