// JavaScript code for Inmagic's Web Textbase Search Confirmation
// Copyright © 1998-2008 Inmagic, Inc., Woburn, MA, USA. All rights reserved.

var   bUseISAPI      = true;

var   dbtw_root      = 'dbtw-wpd';
var   dbtw_xsl       = '/dbtw-wpd/xsl/';
var   dbtw_help      = '/dbtw-wpd/help/';
var   dbtw_action    = '/dbtw-wpd/exec/dbtwpub.dll';

		if (! bUseISAPI)
		   dbtw_action = '/dbtw-wpd/exec/dbtwpcgi.exe';
		   
var   dbtw_params    = '';
var   dbtw_tb_name   = '';
var   dbtw_msg_file  = '';
var   wp_server      = window.location.protocol + '//' + window.location.host;


function dbtw_initialize(action, tb_name, msg_file)
{
   dbtw_action = action;
   dbtw_tb_name = tb_name;
   dbtw_msg_file = msg_file;
}

function dbtw_tb_search()
{
   tb_search_url = dbtw_action + "?AC=TB_SEARCH&TS=1&TN=" + escape(dbtw_tb_name) +
                   "&MF=" + escape(dbtw_msg_file);
	window.location.href = tb_search_url;
	return false;
}

