//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//	Mouseover status bar messages 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

function setMsg(msg)		{
	window.status = msg
	return true
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//	Opens release notes 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

var newPopWin

function openPopup(page)		{
	if ((!newPopWin) || newPopWin.closed)		{
		var attr = "height=550,width=650,status,location,directories,resizable,toolbar,menubar,scrollbars"
		newPopWin = window.open(page,"newWin",attr)
	} else		{
		newPopWin.document.location = page
	}
	newPopWin.focus()
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//	Automatically select drop-down without hitting submit 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

function MM_jumpMenu(targ,selObj,restore){ //v3.0
 
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

