/*  Project:    Smartview Website
   Designer:    Jeff Pokrajac
  Developer:    Smartview
                8 Rodeo Drive
                Lake Forest, CA 92610
                949-588-5894
                http://www.smartview.com
 Programmer:    Jeff Pokrajac, e-mail: jeff@smartview.com
       Date:    5/31/2001
Copyright (c) 1996-2001 by Smartview, All Rights Reserved.
*/

// window.onerror=null;

document.title = 'Smartview - Enterprise Imaging Solutions';
window.defaultStatus = document.title;

function GoSearch()
{
	window.location = "search.asp?srch=" + document.SearchForm.fldSearch.value;
}

function GoProducts()
{
	cmbProductsValue();
}

function cmbProductsValue()
{
	var i;
	var x;
	i = document.SearchForm.cmbProducts.selectedIndex;
	if ( i > 0 ) 
	{
		x = document.SearchForm.cmbProducts.options[i].value;
		window.document.location.href = "buy.asp?producttype=" + x;
	}
}

function cmbOptionsValue()
{
	var i;
	var x;
	i = document.SearchForm.cmbOptions.selectedIndex;
	if ( i > 0 ) 
	{
		x = document.SearchForm.cmbOptions.options[i].value;
		window.document.location.href = x + ".asp";
	}
}

function ShowProducts(x,y)
{
	document.SearchForm.cmbProducts.selectedIndex = x - 1;
}

function ShowOptions(z)
{
	document.SearchForm.cmbOptions.selectedIndex = z - 1;
}
