<!--

// This will trigger the browsers print mechanism - MC
function printPage()
{
   var fFocusTest = (self.focus) ? true : false;
   if (fFocusTest)
      self.focus();
   var fBrowserPrintTest = (window.print) ? true : false;
   if (fBrowserPrintTest)
      window.print();
}


// This will clear out the pre defined data in the username and password fields - MC
var cleared; 
function clearVars()
{
	    if (cleared != 1) { // First time clearing
		    if (document.all) { // Internet Explorer
			    document.all['Username'].innerText = "";
			    document.all['Password'].innerText = "";
			    cleared = 1;
		    }
		    else  // Not Internet Explorer
		    {			
			    document.getElementById('Username').textContent = "";
			    document.getElementById('Password').textContent = "";
			    cleared = 1;
		    }
	    }
}



function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


//-->
