<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function showmenu(theidname)
{
	if(document.getElementById(theidname).style.display=='none')
	{
		document.getElementById(theidname).style.display='block';
	} else {
		document.getElementById(theidname).style.display='none';
	}
}

function popIt1() {
    // the variable name represents the open window
    // the first argument is the page you are displaying in the popup
    // the second argument is the name of the window for future operations
    // you can modify/delete some of the remaining arguments as you wish
    // they represent the features of the popup window
    // N.B. --- put the following on one line!!!
    openWin = window.open('http://www.vno.com/tour/index.html','VNO_Property_Tour','top=50,left=50,width=906,height=708,' + 
'buttons=no,scrollbars=no,location=no,menubar=no,resizable=no,status=no,directories=no,toolbar=no');
    // the following line sets the focus to the open window, i.e. brings it to the front
    openWin.focus();
}

function closeIt() {
    openWin.close();
}
-->