// Expo-Popup.js
// Opens Expo ProgramsSchedule.html page in a minimal browser window.
// Written By:  Brian Bahn
// Updated:  02/14/2007

function OpenEVS(filename)
	{
	// Give the current browser window a name, so new window can reference it for remote control.
	self.name = "wndEVSParentWindow";
	// Open a new programs schedule window.
	wndExpo = window.open(filename, "ExpoWebsite", "height=250, width=500, " +
		"directories=0, location=0, menubar=0, resizable=0, scrollbars=0, " +
		"status=0, toolbar=0");
	// Put the opened window on top.
	wndExpo.focus();
	}


// Expo-Popup.js