function getElement(aID) {
  return (document.getElementById) ? document.getElementById(aID) : document.all[aID];
}


function resize(aID,aBD) {
  elm=getElement(aID);
  tbl=getElement("mtbl");
  if (elm.width==160) {
    tbl.style.width=parseInt(tbl.style.width)+170+"px";
    elm.width=330;
    elm.height=250;
    elm.src=aBD;
  } else {
    tbl.style.width=parseInt(tbl.style.width)-170+"px";
    elm.width=160;
    elm.height=120;
    elm.src=aID;
  }
}

/*function bordik(aID,clr) {
  elm=getElement(aID);
  if (clr==1) elm.style.borderColor='#777777'; else elm.style.borderColor='#101010';
}*/

function reshow(aBD) {
  elm=getElement("area");
  elm.src=aBD;
}


