<!--

function DisplayImage(img){
  img1= new Image();
  img1.src=(img);
  ShowImg(img);
}
function ShowImg(img){
  if((img1.width!=0)&&(img1.height!=0)){
    viewImg(img);
  }
  else{
    PSOimg="ShowImg('"+img+"')";
    interval=setTimeout(PSOimg,20);
  }
}
function viewImg(img){
  imgwidth=img1.width+20;
  imgheight=img1.height+20;
  imgstring="width="+imgwidth+",height="+imgheight;
  imageshow=window.open(img,"",imgstring);
}

function openWindow(mypage,myname,w,h,features) {
  if(screen.width){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  }else{winl = 0;wint =0;}
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += features;
  win = window.open(mypage,myname,settings);
  win.window.focus();
}
//-->