function showMap()
{
	//width = 375 + 75;
	//height = 356 + 100;
	width = 375 + 75;
	height = 356 + 100;
	filename = "http://www.elladoran.co.uk/site/images/map.jpg";
	window.open("showimage.php?filename=" + filename + "&width=" + width + "&height=" + height, "preview", "width=" + width + "px,height=" + height + "px,toolbar=no,location=no,menubar=no,status=no,scrollbars=no,resizable=yes");
}
/*
var shopImgIdx = 0;
var timerId = setTimeout("swapShop()", 3000);

function swapShop()
{
	if(timerId)
		clearTimeout(timerId);
   
	if (shopImgIdx==0)
	{
		document.getElementById("shopimage").src = "site/images/shopfront.jpg";
		shopImgIdx++;
	}
	else if (shopImgIdx==1)
	{
		document.getElementById("shopimage").src = "site/images/int1.jpg";
		shopImgIdx++;
	}
	else
	{
		document.getElementById("shopimage").src = "site/images/int2.jpg";
		shopImgIdx=0;
	}
	timerId = setTimeout("swapShop()", 3000);
}

function stopSwapShop()
{
   if(timerId)
      clearTimeout(timerId);
}
*/