// javascript Document

window.onload = function(){
			if ( !browser.isIE6x ) {
				init(); // init rollover code
			}
		}

		function showOrHideElement(strElementId, strDisplayValue){
		//strDisplayValue should be passed as EITHER "inline" or "block" PASSING 'none' will always HIDE the element indicated--even if it is NOT currently showing
			var theElement = document.getElementById(strElementId);

			if(theElement.style.display == 'block' || theElement.style.display == 'inline'){
				theElement.style.display = 'none';
			}else{
				theElement.style.display = strDisplayValue;
				//special case -- if showing the MM login form, give focus to the loginId field 
				if(strElementId == 'login' && strDisplayValue != 'none'){
					document.getElementById('loginIdField').focus();
					document.getElementById('loginIdField').select();
				}
			}
		}
		
		
