function reworkLogin() {

								//Some minor edits to the Login Page:
								
								//Change Legend to indicate that the user needs to sign in with their eID
                var signInDiv = document.getElementById('ctl00_mainContent_pnlLogin');
                if (signInDiv) {
                var legendArr = signInDiv.getElementsByTagName("legend");
                legendArr[0].innerHTML = "Please Sign In With Your eID";
                }  

                //Change User ID to say eID 
                var loginDiv = document.getElementById('ctl00_mainContent_LoginCtrl');
                if (loginDiv) {
                var loginLabelArr = loginDiv.getElementsByTagName("label");
                for (var i = 0; i < 1; i++) 
                    loginLabelArr[0].innerHTML = "eName";
                }
               
							 //Ensure that the browser's autoSave password feature is turned off
							 var autoComplete = document.getElementById('ctl00_mainContent_LoginCtrl_Password');
                if (autoComplete) {
                var autoCompleteAttr = document.createAttribute( "autocomplete" );
								autoCompleteAttr.value = "off";
								autoComplete.setAttributeNode( autoCompleteAttr );

                }
							
							 //Hide Remember Me Text - must update for 2.3.1.9
                //var rememberMe = document.getElementById('ctl00_mainContent_LoginCtrl');
                //if (rememberMe) {
                //var labelArr = rememberMe.getElementsByTagName("div");
                //labelArr[2].style.visibility = 'hidden';
                //labelArr[2].style.display = 'none';
               // }
								
								//Get value from textbox for CSU Search on SearchResults.aspx page
								var strDuration = document.getElementById('ctl00_mainContent_lblMessage');
								if (strDuration) {
								var strSearch = document.getElementById('ctl00_mainContent_txtSearchInput').value;
								if (strSearch) {
								strDuration.innerHTML = "<br />Not what you're looking for?  Try <a href='http://search.colostate.edu/search-csu.aspx?cx=001074770120494240330%3Annxeddf6qe0&sa=Search&cof=FORID%3A11&q=" + strSearch + "'>searching the entire CSU system</a>...<br />";
								strDuration.style.visibility = 'visible';
								strDuration.style.display = 'block';
								}
								}
								
								//Change link for ticket registrations:
								var lnkRegistration = document.getElementById('ctl00_mainContent_srPrompt_lnkRegister');
								if (lnkRegistration) {
								
								 for( var x = 0; x < lnkRegistration.attributes.length; x++ ) {
  									if( lnkRegistration.attributes[x].nodeName.toLowerCase() == 'href' ) {
										lnkRegistration.attributes[x].nodeValue = "/Secure/Login.aspx";
  									}
								}
								}
								
								var lnkSignInRegistration =  document.getElementById('ctl00_mainContent_pnlRequireLogin');
								if (lnkSignInRegistration) {
								var strongArr = lnkSignInRegistration.getElementsByTagName("strong");
								var regDivArr = lnkSignInRegistration.getElementsByTagName("div");
                strongArr[0].innerHTML = "To Complete Your Order, you need to Sign In With Your eID";
								regDivArr[3].style.visibility = 'hidden';
								regDivArr[3].style.display = 'none';
								}
								
								//Change Customer Registration to Registrant Information on Event Registration page
                var custInfoDiv = document.getElementById('ctl00_mainContent_fldCustomerInfo');
                if (custInfoDiv) {
                var labelArr = custInfoDiv.getElementsByTagName("label");
                for (var i = 0; i < 5; i++) 
                    labelArr[0].innerHTML = "Registrant Information";
										//labelArr[3].innerHTML = "Course";
                }   

								//Disable newsletter preview e-mail address, and just send it to me.
								//var inputNewsletter = document.getElementById('ctl00_mainContent_txtPreviewAddress');
								//if (inputNewsletter) {
								
								//inputNewsletter.setAttribute('value', 'shaun.geisert@colostate.edu');
								//inputNewsletter.style.visibility = 'hidden';
                //inputNewsletter.style.display = 'none';

								//}
								
             }