// ************************************************************************
// ***                       POPUP WINDOW                               ***
// ************************************************************************

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// ************************************************************************
// ***                       TOGGLE LAYER                               ***
// ************************************************************************

function toggleObject(objectID) {
	var el = document.getElementById(objectID);
	if (!el) return;

	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}
