function mhHover(tbl, idx, cls)
{
	var t, d;
	if (document.getElementById){
		t = document.getElementById(tbl);
	}else{
		t = document.all(tbl);
	}
	if (t == null){
		return;
	}
	if (t.getElementsByTagName){
		d = t.getElementsByTagName("TD");
	}else{
		d = t.all.tags("TD");
	}
	if (d == null){
		return;
	}
	if (d.length <= idx){
		return;
	}
	d[idx].className = cls;
}

function divHover(div, cls)
{
	var t;
	if (document.getElementById){
		t = document.getElementById(div);
	}else{
		t = document.all(div);
	}
	if (t == null){
		return;
	}

	t.className = cls;
}

function getFooter()
{

var yObj = new Date();
var dtmCurYear = yObj.getYear();
var result = "";

if(navigator.appName == "Netscape")
{
    dtmCurYear += 1900;
}

result = result + "<div id=\"footerTable\">\n";
result += "<p class=\"blogEntryTime\">All site contents copyright &copy; 2001-" + dtmCurYear;
result += ", by Wonky Enterprises, Inc. All rights reserved.<br/>All music published by More Powerful Than You Can Possibly Imagine Music (BMI).<br/>";
result += "Address e-mail to: <a HREF=\"mailto:yogi@wonky.net\" class=\"storeitem\">yogi@wonky.net</a></p><br/>\n";
result += "</div>";

document.write(result);

}



