function imgOn(imgName){
	document[imgName].src = imgName + 'down.gif';
}
function imgOff(imgName){
	document[imgName].src = imgName + '.gif';
	window.status = "";
}
function imgStay(imgName){
	if (imgName.length > 2 && document.location.href.indexOf('?') == -1 && top.contents != undefined) top.contents.document[imgName].src = imgName + 'down.gif';
	if (imgName != "hom" && top.contents != undefined) top.contents.document['hom'].src = 'hom.gif';
	if (imgName != "cou" && top.contents != undefined) top.contents.document['cou'].src = 'cou.gif';
	if (imgName != "del" && top.contents != undefined) top.contents.document['del'].src = 'del.gif';
	if (imgName != "dir" && top.contents != undefined) top.contents.document['dir'].src = 'dir.gif';
	if (imgName != "emp" && top.contents != undefined) top.contents.document['emp'].src = 'emp.gif';
	if (imgName != "fee" && top.contents != undefined) top.contents.document['fee'].src = 'fee.gif';
	if (imgName != "pro" && top.contents != undefined) top.contents.document['pro'].src = 'pro.gif';
//	if (imgName != "hig" && top.contents != undefined) top.contents.document['hig'].src = 'hig.gif';
	if (imgName != "inv" && top.contents != undefined) top.contents.document['inv'].src = 'inv.gif';
}

<!-- Original:  Mike Hall (MHall75819@aol.com) -->
<!-- Web Site:  http://members.aol.com/MHall75819 -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
var NS4 = (document.layers);
var IE4 = (document.all);

var win = this;
var n   = 0;

function findInPage(str) {
var txt, i, found;
if (str == "")
return false;
if (NS4) {
if (!win.find(str))
while(win.find(str, false, true))
n++;
else
n++;
//if (n == 0) alert(str + " was not found on this page.");
}
if (IE4) {
txt = document.body.createTextRange();
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found) {
txt.moveStart("character", -1);
txt.findText(str);
txt.select();
txt.scrollIntoView();
n++;
}
else {
if (n > 0) {
n = 0;
findInPage(str);
}
}
}
return false;
}
function checksearch(){
curUrl = location.href + '';
if(curUrl.indexOf('?search') != -1)
{
	searchkey=curUrl.substring(curUrl.indexOf('?search=')+8,curUrl.length);
	findInPage(searchkey);
}
}
function check_frames(strPage){
if (window.name != "TOPPMain") if (confirm("It appears that you have surfed in to a subpage.  To reinstate TOPP's left navigation bar to view this web site, click OK")) {top.window.location = "http://www.toppauto.com/?frame_" + strPage;}
}