// Logo Image Hover
if (document.images)
{
    pic1on= new Image(72,36);
    pic1on.src="/image/HomeButtonOn.jpg";  

    pic1off= new Image(72,36);
    pic1off.src="/image/HomeButtonOff.jpg";

    pic2on= new Image(180,36);
    pic2on.src="/image/FixedButtonOn.jpg";  

    pic2off= new Image(180,36);
    pic2off.src="/image/FixedButtonOff.jpg";

    pic3on= new Image(180,36);
    pic3on.src="/image/ParatransitButtonOn.jpg";  

    pic3off= new Image(180,36);
    pic3off.src="/image/ParatransitButtonOff.jpg";

    pic4on= new Image(193,36);
    pic4on.src="/image/VacationersButtonOn.jpg";  

    pic4off= new Image(193,36);
    pic4off.src="/image/VacationersButtonOff.jpg";

    pic5on= new Image(106,36);
    pic5on.src="/image/CoastButtonOn.jpg";  

    pic5off= new Image(106,36);
    pic5off.src="/image/CoastButtonOff.jpg";

    pic6on= new Image(179,36);
    pic6on.src="/image/BoardButtonOn.jpg";  

    pic6off= new Image(179,36);
    pic6off.src="/image/BoardButtonOff.jpg";
    
    pic7on= new Image(105,43);
    pic7on.src="/image/PrintRibbonOn.jpg";  

    pic7off= new Image(105,43);
    pic7off.src="/image/PrintRibbon.jpg";

    pic8on= new Image(105,59);
    pic8on.src="/image/EmailRibbonOn.jpg";  

    pic8off= new Image(105,59);
    pic8off.src="/image/EmailRibbon.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;
    }
}


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

function SearchSubValidate()
{
    if (document.SearchFormSub.SearchSub.value.length <= 2)
	{
		alert("Search Selection - Please provide a valid entry");
		return false;
	}
	else
	{
		return true;
	}
}


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

function RemoveSearchSub()
{
    document.SearchFormSub.SearchSub.value = "";
}