// JavaScript Document
var newwindow;
function showMapWindow(url)
{
	newwindow=window.open(url,'name','height=427,width=427');
	if (window.focus) {newwindow.focus()}
}
function showLocalAttractionWindow(url)
{
	newwindow=window.open(url,'name','height=340,width=500');
	if (window.focus) {newwindow.focus()}
}
function showPhotoGalleryWindow(url)
{
	newwindow=window.open(url,'name','height=350,width=600, center:yes');
	if (window.focus) {newwindow.focus()}
}
function showOtherPhotoGalleryWindow(url)
{
	newwindow=window.open(url,'name','height=474,width=500, center:yes');
	if (window.focus) {newwindow.focus()}
}

function closeMapWindow()
{
window.close();	
}
