/* ---- Card buttons ---- */

browserName=navigator.appName;
browserVer=parseInt(navigator.appVersion);
if (browserVer >=3)
        version="3";
else
        version="2";
if (version=="3")
{

pic = new Array();

pic[0] = new Image(134,21);
pic[1] = new Image(134,21);

pic[0].src = "../../images/b_view_off.gif";
pic[1].src = "../../images/b_view_on.gif";
}


/* ---- Gallery pop-ups ---- */

function shoot(url, x, y)
 {
  var okno = window.open("foto.php?url="+url+"&x="+x+"&y="+y, "", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
 }

 function shoot_video(url, x, y)
 {
  var okno = window.open("video.php?url="+url+"&x="+x+"&y="+y, "", "width="+x+",height="+y);
  okno.innerWidth = x;
  okno.innerHeight = y;
 }


/* ---- Akce pop-ups ---- */

 function popup(theUrl, winName, features)
 {
  window.open(theUrl, winName, features);
 }