/********************************************************************************************
*	several functions for rollover effects on non-image buttons								*
********************************************************************************************/
function setButtonStyles (btn, bevelstring, face, lettering, status) {
	btn.style.borderColor = bevelstring;
	btn.style.backgroundColor = face;
	//btn.style.color = lettering;
	btn.firstChild.firstChild.style.color = lettering;
	if (status != null) { 
		window.status = status; 
		return true;
	}
}