/**
 * Popup fotografie vini
 */
function popup_vini(foto, w, h)
{
  l = (screen.availWidth-10 - w) / 2;
  t = (screen.availHeight-20 - h) / 2;

  if (w > 0) {
  	if (w < 150) {
  		w=150;
  	}
  	h=h+50;
	features = "width="+w+",height="+h;
  } else {
	features = "";
  }
  features += ",left="+l+",top="+t;
  features += ",screenX="+l+",screenY="+t;
  features += ",scrollbars=no,resizable=no,location=no";
  features += ",menubar=no,toolbar=no,status=no";
  
  url = 'popup_vini.php?foto='+foto;

  window.open(url, 'popup', features);
}

/**
 * Popup fotografie specialita`
 */
function popup_specialita(foto, w, h)
{
  l = (screen.availWidth-10 - w) / 2;
  t = (screen.availHeight-20 - h) / 2;

  if (w > 0) {
  	if (w < 150) {
  		w=150;
  	}
  	h=h+50;
	features = "width="+w+",height="+h;
  } else {
	features = "";
  }
  features += ",left="+l+",top="+t;
  features += ",screenX="+l+",screenY="+t;
  features += ",scrollbars=no,resizable=no,location=no";
  features += ",menubar=no,toolbar=no,status=no";
  
  url = 'popup_specialita.php?foto='+foto;

  window.open(url, 'popup', features);
}
