function MM_openBrWindow(theURL,winName,features) { //v2.0
	var CmArea = window.open(theURL,winName,features);
	CmArea.focus();
}

function popupWin (url, name, width, height) {
		var left = (screen.width - width) / 2;
		var top = (screen.height - height) / 2;
		var options = "left=" + left + ",top=" + top +",width=" + width + ",height=" + height + ",scrollbars=yes,location=no,menubar=no,toolbar=no";
		window.open(url, name, options);
	}

// info—p
function openWin(url) { 
  window.open(url,'nyc','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=820,height=740');
}

