function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function resizeMenu(theWidth,theHeight) {  // check available screen height so menu window doesn't exceed it
	var availableH = screen.availHeight;
	if (availableH < theHeight) {
		theHeight = availableH;
	}
	window.resizeTo(theWidth,theHeight);
}