function toggleInputFocus(inputBox) {
   if (inputBox.className=="input2") {
     inputBox.className="input2Focus";
   } else {
      inputBox.className="input2";
   }
}
function toggleCommentFocus(inputBox) {
   if (inputBox.className=="CommentBox") {
     inputBox.className="CommentBoxFocus";
   } else {
      inputBox.className="CommentBox";
   }
}
function buttonSwap(button) {
   if (button.className=="button") {
     button.className="buttonover";
	 button.style.cursor = 'hand';
   } else {
      button.className="button";
	  button.style.cursor = 'default';
   }
}
function buttonSwap2(button) {
   if (button.className=="Page_button") {
     button.className="Page_buttonover";
	 button.style.cursor = 'hand';
   } else {
      button.className="Page_button";
	  button.style.cursor = 'default';
   }
}