function ImgPopUp(img, title, width, height) {
/*
  if (fin && !fin.closed){    // if allready opened, close it...
    fin.close()
  }  */

  var xc = screen.width;
  var yc = screen.height;
  fin="";

  var cntxc = Math.round(( xc / 2 ) - ( width / 2 ));
  var cntyc = Math.round(( yc / 2 ) - (( height * 9 ) / 10 ));

  if(height < 501){var scroll = "no";} else {var scroll = "yes";height = 450;width = Math.round(width + 20);}
  if(width > xc){width = Math.round(( xc ) - ( xc / 4 ));}

  fin=open ('','_blank','scrollbars=' + scroll + ',status=no,menubar=no,toolbar=no,location=no,directories=no,resizable=yes,copyhistory=no,left=' + cntxc + ',top=' + cntyc + ',width=' + width + ',height=' + Math.round(height)); // height+18
  fin.document.open();
  fin.document.write("<html><head><title>");
  fin.document.write(title);
  fin.document.write("</title></head><body bgcolor=#FFFFFF topmargin=0 marginheight=0 leftmargin=0 marginwidth=0>");
  fin.document.write("<a href=javascript:window.close();><img src=\""+img+"\" align=top border=0 alt=\"Close Window\"></a>");
  fin.document.write("</body></html>");
  fin.focus();
}

