// Executive Suite Checker
//
// This script checks the value of a user's square footage requirements and determine whether or not to 
// display a popup screen about Executive Suites.

var newWindow;

// openNewWindow()
// This function creates a new popup window and populates it with the content from the file represented by "url".
function openNewWindow(url)
{
	newWindow = window.open(url,'wellnesstip','width=600,height=400,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,copyhistory=0,resizable=0');
	if(window.focus) {
		newWindow.focus()
	}
}

// checkValue()
// This function analyzes the actual square footage value that was selected by the user, and handles it accordingly.
function checkValue(value) {
	if(value == "0 - 1,000") {
		openNewWindow("executive-suite-popup.php");
	}
}