﻿window.onload = getWindows;

function getWindows()
{
	allLinks = document.getElementsByTagName("area");
	for (i=0; i<allLinks.length; i++)
	{
		if (allLinks[i].id.indexOf("Accommodation")>-1)
			{
				allLinks[i].onclick = newWindow;
			}
	}
preloadImages();
}

function newWindow()
{
	window.open(this.href, "ImagePreview", "resizable=no, width=600, height=800, scrollbars=no, location=no");
	return false;
}