// JavaScript Document
var popUpWin=0;

function view_img(img, width, height)

{

  if(popUpWin)

  {

    if(!popUpWin.closed) popUpWin.close();

  }
  var top = 0;
  var left = 0;
  width = width + 20;
  height = height + 100;
  
  popUpWin = open('../../view.php?img='+img, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');

}


