<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function showFloorplansPopup(URL) {
	window.open(URL, 'Panoramic', 'scrollbars=no,resizable=no,menu=no,width=620,height=400,top=25,left=300');
}

function openWindowWide(url, name) {
  popupWin = window.open(url, name, 'width=800,height=300,left=50,top=50,scrollbars=yes,resizable=yes,menu=no')
}

function showGallery(URL) {
	window.open(URL, 'CenturyTowerEvent', 'scrollbars=no,resizable=yes,menu=no,width=610,height=350,top=25,left=300');
}

var newwindow = '';

function popitup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'Panoramic','scrollbars=no,resizable=no,menu=no,width=620,height=400,top=25,left=300');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}
//-->