//---------------------------------------------------------------
// Copyright (c) 2000-2003 Asset Web Design. All rights reserved.
// Pearland, Texas 77581
// 281-412-3539
// www.asset-web.com
//
// 08-09-2004
//---------------------------------------------------------------


// functions ----------------------------------------------------
//---------------------------------------------------------------

function ProductsDataSheetDisplay (theForm)
  {
  var sPath = "";
  var iIndex = -1;
  
  // index
  iIndex = theForm.products.selectedIndex;
  
  // path
  sPath = "http://www.mimixbroadband.com/products_results.asp?sSearchKeywords="
  sPath = sPath + theForm.products.options[iIndex].text;
    
  // open
  MyWindowOpen (sPath, "");
  
  // reset 
  theForm.products.selectedIndex = 0;
  
  return (true);
  }


//---------------------------------------------------------------

function ProductsDataSheetDisplayOrg (theForm)
  {
  var sPath = "http://www.mimixbroadband.com/Product_Not_Available.html";
  
  // path
  if (theForm.products.value != "-1")
    {
    sPath = "http://www.mimixbroadband.com/Data/Document-Library/"
    sPath = sPath + theForm.products.value;
    }
    
  // open
  MyWindowOpen (sPath, "");
  
  // reset 
  theForm.products.selectedIndex = 0;

  return (true);
  }


//---------------------------------------------------------------

function MyWindowOpen (url, name) 
  {
  var options = '';

  <!-- options -->
  // options = options + 'resizeable=yes,';
  // options = options + 'menubar=yes,';
  // options = options + 'toolbar=yes,';
  // options = options + 'locationbar=yes,';
  // options = options + 'status=yes';
  options = "";

  <!-- window -->
  popupWin = window.open (url, name, options);
  popupWin.opener.top.name = "opener";
  }