// var pathToImages = "../bf/img/basic/"
var pathToImages = "img/basic/"
function buttonOver(newButton) {
        var thisButton = document.getElementById(newButton);
		thisButton.src = pathToImages + newButton + "Over.gif";
}
function buttonUp(newButton) {
        var thisButton = document.getElementById(newButton);
		thisButton.src = pathToImages + newButton + "Up.gif";
}
function buttonDown(newButton) {
        var thisButton = document.getElementById(newButton);
		thisButton.src = pathToImages + newButton + "Down.gif";
}

function browserTag() {
	if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 5) {
	document.write('<font color="#f8f8ff" size="-4">NS5</font>'); 
	}
	else {
	document.write('<font color="#f8f8ff" size="-4">MSIE</font>'); 
	}
}
