
function showPicture(path,img,width,height,title)
{
  if(title == null)
  {
     title='';
  }
  t=5;
  l=100;
  w=width+10;
  h=height+15+15+20;
  url=path+'showPicture.php?img='+img+'&title='+escape(title);
  newWin=window.open(url, '', "scrollbars=no,top=" + t + ",left=" + l + ",width=" + w + ",height=" + h);
  newWin.focus();
}

function showMaxiPicture(path,img,width,height,title)
{
  t=5;
  l=100;
  if(width > 600)
  {
    width=600;
  }
  if(height > 500)
  {
    height=500;
  }  
  if(title == null)
  {
    title='';
  }
  
  w=width+10+10;
  h=height+15+15+20;
  url=path+'showPicture.php?img='+img+'&title='+escape(title);
  newWin=window.open(url, '', "scrollbars=yes,top=" + t + ",left=" + l + ",width=" + w + ",height=" + h);
  newWin.focus();
}

function openWin(url, name, t, l, w, h)
{
  newWin=window.open(url, name, "scrollbars=yes,top=" + t + ",left=" + l + ",width=" + w + ",height=" + h);
  newWin.focus();
}

function printPicture(path,img,width,height,title,type)
{
  t=5;
  l=100;
  if(width > 600)
  {
    width=600;
  }
  if(height > 500)
  {
    height=500;
  }  
  if(title == null)
  {
    title='';
  }
  
  if(type == 'print')
  {
    url=path+'showPicture.php?img='+img+'&title='+escape(title)+'&autoprint=true';
  }
  else
  {
    url=path+'showPicture.php?img='+img+'&title='+escape(title)+'&autoprint=false';
  }
  
  w=width+10+10;
  h=height+15+15+20;
  newWin=window.open(url, '', "scrollbars=yes,top=" + t + ",left=" + l + ",width=" + w + ",height=" + h);
  newWin.focus(); 
}
