//=============================================================================
//Program:		South Mountain Community College Channel General Include File
//Version:		0.02
//Author:		Scott Cate, modified by Stephen Heitz
//Date:			04/06/2004
//Last Modified:	10/06/2006
//=============================================================================

//Set on key event handler to the function that will ignore enter key press 
window.document.onkeydown = CheckEnter;
//--------------------------------------

function CheckEnter(){
  if(event.keyCode == 13)
    return false;
  return true;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
