﻿//we have to append the querystring to the searchLink that gets
//passed to ctredir for clicktrax.  They only take the qu value
//by default - the rest we have to provide.

function GetQuery()
{
	var Scopes = document.forms[0].SearchScope;
	
	for(i = 0; i < Scopes.length; i++)
	{
		if(Scopes[i].checked)
		{
			searchLink.href += "prodtech=0&SearchScope=" + Scopes[i].value + "&qu=";
			break;
		}
	}

}