﻿// JScript File
var tempX;
var tempY;
function ShowPopup(Imagesrc)
{
    var ImagePath = (document.getElementById(Imagesrc).src).replace(".jpg","_big.jpg");
    return GB_showCenter('Agriturismo Quaglia - Cilento', ImagePath, 400, 500);
}
//OpenWindow	
function OpenWindow (URL, WinName, width, height, pos) { 
	if (pos==false) 
	{ 
		tempX = (screen.width-width)/2;
		tempY = (screen.height-width)/2;
	}
	var Features = "width=" + width;
	Features += ",height="+ height;
	Features += ",left=" + tempX +",top=" + tempY + ",screenX=" + tempX +",screenY=" + tempY + ",resizable=no,status=no,toolbar=no,menubar=no,scrollbars=yes";
	window.open(URL, WinName, Features);
}

