// Core JavaScript functions

function showimage(img,resizable) {
   resizable = resizable == undefined ? "no" : resizable;
   image = new Image();
   image.src = img;
   w = image.width;
   h = image.height;
//   attr = "width="+w+",height="+h+",resizable="+resizable;
   attr = "width="+w+",resizable="+resizable;
   window.open(img, "", attr);
}

function makevisible(cur, which) {
  	if (which==0) cur.filters.alpha.opacity=100
   else cur.filters.alpha.opacity=40
}

// EOF