﻿function popupWindow(strURL, strAnchor, intWidth, intHeight) {
	var newWindow;

	if(strAnchor != "") {
		strURL += "#" + strAnchor;
	};

	newWindow = window.open(strURL, "_blank","scrollbars=yes,directories=no,location=no,menubar=no,status=no,toolbar=no,fullscreen=no,channelmode=no," +
		"resizable=no,height=" + intHeight + ",width=" + intWidth);
}

function openLocations(strAnchor) {
	popupWindow("locations-list.htm", strAnchor, 750, 700);
}

function galleryPopup(strURL, intWidth, intHeight) {
	popupWindow(strURL, '', intWidth, intHeight);
}