// ---------- script properties ----------

var results_location = 'results.html';

// ---------- end of properties ----------

function search_form(Form)
{
 if (Form.d.value.length > 0)
 {
//'tie=' + escape(Form.d.value) + 
   document.cookie = 'tid=' + escape(Form.d.value) + '; path=/';
  document.cookie = 'tin=0; path=/';
  parent.mainFrame.location.href = results_location;
 }
}


function search_form_link(Form)
{
 if (Form.length > 0)
 {
  document.cookie = 'tid=' + escape(Form) + '; path=/';
  document.cookie = 'tin=0; path=/';
  parent.mainFrame.location.href = results_location;
 }
}

