﻿// JScript File

// Displays the specified help topic in a new (popup) window - named to avoid multiple instances
function showSearchTipWindow()
{
    // We give the window an explicit name to ensure that the existing window is reused if it is re-opened
    var WINDOW_NAME = "searchTips";
    
    // This is a 'popup' window, so we don't show an address bar or menubar etc.
    var WINDOW_FEATURES = "left=100, top=50, width=800, height=600, toolbar=1, location=0, directories=0, status=1, menubar=0, scrollbars=1, resizeable=1";
    
    var targetUrl = "./SearchTips.aspx";
    
    // Display the help topic in a new window
    window.open(targetUrl, WINDOW_NAME, WINDOW_FEATURES);

}