
function goSearch()
{
	if (document.navForm.searchtype[0].checked)
	{
		if(document.navForm.basic.value=="")
		{
			alert("Please enter a search criteria");
		}
		else
		{
			document.navForm.action="results.asp";
			document.navForm.submit();
		}
	}
	else if (document.navForm.searchtype[1].checked)
	{
		if(document.navForm.basic.value=="")
		{
			alert("Please enter a search criteria");
		}
		else
		{
			document.navForm.action="accessories.asp?action=srch&accmodel=" + document.navForm.basic.value;
			document.navForm.submit();
		}
	}
	else
	{
		document.navForm.action="advancedsearch.asp";
		document.navForm.submit();
	}
	//document.thisForm.shieldtype.value=document.thisForm.shield[document.thisForm.shield.selectedIndex].text;
	//document.thisForm.action="results.asp";
	//document.thisForm.submit();
}

function goPrint(i)
{
	window.open('print.asp?prodid='+i,'print','width=678,height=700,scrollbars=yes,resizable=yes')
}

function goAcc()
{
	document.thisFormA.action="accessories.asp?action=srch";
	document.thisFormA.method="post";
	document.thisFormA.submit();
}

function goSearchADV()
{
	document.thisFormW.shieldtype.value=document.thisFormW.shield[document.thisFormW.shield.selectedIndex].text;
	document.thisFormW.action="results.asp";
	document.thisFormW.submit();
}