// variables that indicate which browser is being used
var NS4 = (document.layers) ? true : false; // test a feature unique to Netscape Navigator 4
var IE4 = (document.all) ? true : false; // test a feature unique to Internet Explorer 4

// declare an empty version of the clearElement function
function clearElement() {}

//this will open the map info html page at the anchor parsed to it
function OpenInfoPage(inUrl, toolTipID, event)
{
    // open a new, resizeable window, with scrollbars and a loolbar at the url specified
    var win = window.open (inUrl, "newwin",
                       "width=800,height=400,status,resizable,scrollbars,toolbar");

    // set the window to be the focus
    win.focus();

    // clear the tool tip of the attraction that called the page
    clearElement(toolTipID, event);
}


