
<!--

function SearchWheelBoltPatternNav(PgUrl, MenuId)
{
	// Get the BoltPattern selected from the drop down list
    var BoltPatternIndex = document.WheelSearchForm.BoltPattern.selectedIndex;
    var BoltPattern = document.WheelSearchForm.BoltPattern[BoltPatternIndex].value;
   
    var Menu = '?MenuId=' + MenuId

    // construct the URL for the new bolt pattern		
	var url = PgUrl + Menu + '&BoltPattern=' + BoltPattern;
   
    document.returnValue = false;
   
    // Go the to target URL
    window.location.href = url;

}


function SearchWheelBoltPatternNav2(PgUrl, MenuId)
{
	// Get the BoltPattern selected from the drop down list
    var BoltPatternIndex = document.WheelSearchForm.BoltPattern.selectedIndex;
    var BoltPattern = document.WheelSearchForm.BoltPattern[BoltPatternIndex].value;
    var DiameterIndex = document.WheelSearchForm.Diameter.selectedIndex;
    var Diameter = document.WheelSearchForm.Diameter[DiameterIndex].value;
    var WidthIndex = document.WheelSearchForm.Width.selectedIndex;
    var Width = document.WheelSearchForm.Width[WidthIndex].value;
    var OffsetIndex = document.WheelSearchForm.Offset.selectedIndex;
    var Offset = document.WheelSearchForm.Offset[OffsetIndex].value;
    var MaterialIndex = document.WheelSearchForm.Material.selectedIndex;
    var Material = document.WheelSearchForm.Material[MaterialIndex].value;

   
    var Menu = '?MenuId=' + MenuId

    // construct the URL for the new bolt pattern		
	var url = PgUrl + Menu + '&BoltPattern=' + BoltPattern + '&Diameter=' + Diameter + '&Width=' + Width + '&Offset=' + Offset + '&Material=' + Material;
   
    document.returnValue = false;
   
    // Go the to target URL
    window.location.href = url;

}



function SearchTyreRimNav(PgUrl, MenuId)
{
	// Get the BoltPattern selected from the drop down list
    var RimDiameterIndex = document.TyreSearchForm01.RimDiameter.selectedIndex;
    var RimDiameter = document.TyreSearchForm01.RimDiameter[RimDiameterIndex].value;
   
    var Menu = '?MenuId=' + MenuId

    // construct the URL for the new bolt pattern		
	var url = PgUrl + Menu + '&RimDiameter=' + RimDiameter;
   
    document.returnValue = false;
   
    // Go the to target URL
    window.location.href = url;

}


//-->

