/*
 * This file can be edited to customize the look and feel of EDU.
 * Do not remove any text or code wrapped in comments.
 *
 * Description:
 *   All buttons in the system are drawn by calls to the following two functions.
 *   These functions may use drawIconButton(), drawCSSButton(), or some other
 *   custom code.
 */

/*
 * Edit this code to change the way a single button is drawn. 
 */
function drawButton(id, label, action) {
	/*
	 * Example of how a button could be drawn:
	 *   document.write("<a class=\"" + css + "\"");
	 *   document.write(" href=\"javascript:if(isActiveButton('" + id + "')) {" + action + "}\"");
	 *   document.write(" onmouseover=\"_mouseOverButton('" + id + "')\"");
	 *   document.write(" onmouseout=\"_mouseOutButton('" + id + "')\">");
	 *   document.write(label);
	 *   document.write("</a>&nbsp;");
	 */
  drawCSSButton(id, label, action, "button");
}

/* 
 * Edit this code to change the way a single small button is drawn. 
 */
function drawSmallButton(id, label, action) {
  drawCSSButton(id, label, action, "small_button");
}