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


function imageWindow(imgName, imgAltText, imgWidth, imgHeight, language)
{
  var windowWidth = imgWidth + 80;
  var windowHeight = imgHeight + 60;
    
  window.open('image.php?img=' + imgName + '&alt=' + imgAltText + '&lang=' + language, '', 'width=' + windowWidth + ',height=' + windowHeight + ',scrollbars=yes');
}

function emailWindow(language)
{
  var windowWidth = 440;
  var windowHeight = 490;
	var page;
  
	if(language == "en")
	{
		page = "mailer_popup_en.php";
	}
	else
	{
		page = "mailer_popup.php";
	}

	window.open(page, '', 'width=' + windowWidth + ',height=' + windowHeight);
}