
// client-side map functions
// Margo, 4/2001

var mapWindow;

function openMapWindow(strMapURL)
{
	if (!mapWindow || (mapWindow && mapWindow.closed)) {
		mapWindow = window.open(strMapURL, 'RLMapWindow','status=yes, menubar=no, scrollbars=yes, width=800, height=600');
	}
	else {
		mapWindow.location.href = strMapURL;
	}
	
	mapWindow.focus();
}

