// JavaScript Document

function openNewWindow(URLtoOpen) {
	var windowFeatures = 'width=550,height=525,toolbar=no,status=no,scrollbars=yes,resizable=yes';
	var windowName = 'thewin';
	newWindow=window.open('http://www.citt.ufl.edu/openhouse/tour/' + URLtoOpen, windowName, windowFeatures);
	newWindow.focus();		// the new window will pop to front
}

// Used on projectdev.php
function hideAllOthers(activeSection)
{
		var showMe = document.getElementById(hideAllOthers.arguments[0]);
		showMe.style.display = "block";

		for (var i=1; i<hideAllOthers.arguments.length; i++)
		{
			var element = document.getElementById(hideAllOthers.arguments[i]);
			element.style.display = "none";

		}

}