<!--
//***************************************************************************
var gA              = navigator.userAgent;
var ns4             = -1;
var ns6             = -1;
var ie4             = -1;
var ieCE            = -1;
var iePPC           = -1;
//***************************************************************************
ns4 = document.layers;
ns6 = document.getElementById&&!document.all;
ie4 = document.all;
ieCE = gA.indexOf("Windows CE;");
iePPC = gA.indexOf("PPC;");
ieMobile = gA.indexOf("IEMobile");
//***************************************************************************
function WebToolsGetObject(s)
{
    var obj;

    if (ns6)
    {
        obj = document.getElementById(s);
    }
    else if (ns4)
    {
        obj = document.layers(s);
    }
    else if (ieCE > -1)
    {
        obj = eval(s);
    }
    else
    {
        obj = document.all(s);
    }

    return(obj);
}
//***************************************************************************
function JumpToYear()
{
	var oYear;
	
	oYear = WebToolsGetObject("year");
	location.hash = "y" + String(oYear.value);
	oYear.value = "";
}
//***************************************************************************
function SubmitFilter(obj)
{
	obj.form.submit();
}	
//***************************************************************************
function SubmitMake(obj)
{
	obj.form.submit();
}
//***************************************************************************
