// Logo Image Hover
if (document.images)
{
    pic1on= new Image(140,20);
    pic1on.src="/image/HerbicidesButtonOn.jpg";  

    pic1off= new Image(140,20);
    pic1off.src="/image/HerbicidesButtonOff.jpg";

    pic2on= new Image(140,20);
    pic2on.src="/image/InsecticidesButtonOn.jpg";  

    pic2off= new Image(140,20);
    pic2off.src="/image/InsecticidesButtonOff.jpg";

    pic3on= new Image(140,20);
    pic3on.src="/image/FungicidesButtonOn.jpg";  

    pic3off= new Image(140,20);
    pic3off.src="/image/FungicidesButtonOff.jpg";

    pic4on= new Image(191,20);
    pic4on.src="/image/PlantGrowthButtonOn.jpg";  

    pic4off= new Image(191,20);
    pic4off.src="/image/PlantGrowthButtonOff.jpg";

    pic5on= new Image(140,39);
    pic5on.src="/image/InsectGrowthButtonOn.jpg";  

    pic5off= new Image(140,39);
    pic5off.src="/image/InsectGrowthButtonOff.jpg";

    pic6on= new Image(140,20);
    pic6on.src="/image/Herbicides2ButtonOn.jpg";  

    pic6off= new Image(140,20);
    pic6off.src="/image/Herbicides2ButtonOff.jpg";

    pic7on= new Image(156,20);
    pic7on.src="/image/MissionButtonOn.jpg";  

    pic7off= new Image(156,20);
    pic7off.src="/image/MissionButtonOff.jpg";

    pic8on= new Image(161,20);
    pic8on.src="/image/ContactButtonOn.jpg";  

    pic8off= new Image(161,20);
    pic8off.src="/image/ContactButtonOff.jpg";
    
}

function lightup(imgName)
{
    if (document.images)
    {
        imgOn=eval(imgName + "on.src");
        document[imgName].src= imgOn;
    }
}

function turnoff(imgName)
{
    if (document.images)
    {
        imgOff=eval(imgName + "off.src");
        document[imgName].src= imgOff;
    }
}

function showclick(imgName)
{
    if (document.images)
    {
        imgClick=eval(imgName + "click.src");
        document[imgName].src= imgClick;
    }
}


// Search Validation
function SearchValidate()
{
    if (document.getElementById("Search").value.length <= 2)
	{
		alert("Search Selection - Please provide a valid entry");
		return false;
	}
	else if (document.getElementById("Search").value == 'Search...')
	{
	    alert("Search Selection - Please provide a valid entry");
	    return false;
	}
	else
	{
		return true;
	}
}


// Form Input Clear - All
function RemoveSearch()
{
    document.SearchForm.Search.value = "";
}
