
<!-- CODE TO CHANGE ARROW COLORS ON MENU BAR -->

function imgSwap(place, imgName)
  { 
    document[place].src = imgName;
  }

<!-- END CODE TO CHANGE ARROW COLORS -->

<!-- Swap color on navbar test-->
  var lastRow="";
  function changeOver(CurrentRow)
  {
	lastRow = CurrentRow.className ;
	CurrentRow.className="leftNavLinksMenuMouseOver";
  }
  function changeOut(CurrentRow)
  {
	CurrentRow.className=lastRow ;
	lastRow="";
  }
<!-- end of Swap color on navbar -->


<!-- MISCELLANEOUS FUNCTIONS -->

function pop(url, name, width, height)
  {
   window.open(url,name,"height=" + height + ",width=" + width);
  }

function message(text)
  {
   window.status = text;
  }

<!-- From www.njit.edu -->
function go()
{
	box = document.forms[1].quicklinks;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}
<!-- END -->

