<!--
var bFlip = false;
var iHeight = 250;
var iMult = 9;
var t1;

minus = new Image(26, 27); 
minus.src = "/images/-.gif";

function DoCommand(command){
 document.execCommand(command, false, null);
}

function DoLink(command){
 document.execCommand(command);
}

function autoSlideDn() {
  document.getElementById('news2').style.height = iHeight + 'px';
  iHeight = iHeight - 5 * iMult;
  iMult--;
  if (iMult < 1) { iMult = 1; }
  if (iHeight <= 32) {
   clearInterval(t1);
   document.getElementById('news2').style.height = '35px';
   document.getElementById('plusg').src = '/images/+.gif';
  }
}

function setState() {
 iMult = 9;
 iHeight = 250;
 clearInterval(t1);
 if (bFlip) {
  document.getElementById('plusg').src = minus.src;
  document.getElementById('news2').style.height = '100%';
 } else {
  t1 = setInterval('autoSlideDn()', 20);
 }
 bFlip = !bFlip;
}

//-->
