// Image Popup Window Script
// by Anaiz
// -------------------------
// info@anaiz.hu
// www.anaiz.hu


function imageWindow(imgName, imgTitle, imgWidth, imgHeight)
{
  var windowWidth = imgWidth + 20;
  var windowHeight = imgHeight + 50;
    
  window.open('image.php?img=' + imgName + '&title=' + imgTitle + '&width=' + imgWidth + '&height=' + imgHeight, '', 'width=' + windowWidth + ',height=' + windowHeight);
}

function movieWindow(movName, movWidth, movHeight)
{
  var windowWidth = movWidth + 100;
  var windowHeight = movHeight + 60;
    
  //window.open('/movie/' + movName, '', 'width=' + windowWidth + ',height=' + windowHeight);
}

