// JavaScript Document

Event.observe(window, 'load', function() {
	setTimeout(function() { document.getElementsByClassName("map").each ( function (el) {
		el.observe('click', function(event) { Event.stop(event); openWindow( this.href ,'BGMaps','scrollbars=yes,resizable=yes,width=680,height=510'); }.bind(el));	
	})}, 1);
});

function openWindow(theURL,winName,features) {
	var popupWindow = window.open(theURL,winName,features);
	popupWindow.focus();
}

