// Copyright 01 Nov 1999, Cavalry Outpost Publications.
// This program selects a specific menu item. links the associated Uniform
// Resource Locator (URL), loads and displays the designated HTML file or
// page element.

// *********************************************************************
// **********      Program Name = Select.js Ver 03.11.11      **********
// *********************************************************************


// 1,0 DEFINE SCREEN and POPUP WINDOW PARAMETERS
// A. Define Menu Selection Location

function goSelection(url) {
        if (url != "") {
                self.location = url
        }
}

