function changeBackground(element)
	{
		var el = document.getElementById(element);
		if (el.className == 'menuRollover')
			{
				el.className='menu';
			}
		else
			{
			 	el.className='menuRollover';
				el.style.cursor='hand';
			}
	}
function ViewComment(AlumniID)
	{
		var w = screen.width, h = screen.height;
		var leftPos = (w/2-400/2), topPos = (h/2-200/2);
		var windowHandle=window.open("ViewComment.asp?ID=" + AlumniID, 'winName', "width=400"+",height=200"+",top="+topPos+",left="+leftPos+",toolbar=no,status=no,menubar=no,directories=no,resizable=no,scrollbars=yes");
		windowHandle.focus();
	}
function changeSubBackground(element)
	{
	    return;
		var el = document.getElementById(element);
		if (el.className == 'submenu')
			{
				el.className='submenuRollover';
			}
		else 
			{
				el.className='submenu';
			}
	}