﻿
// This function is called when there is a change to the value
// selected for the login selector.  If a login is selected the
// user is redirected to the correct login page through the go.asx page.
function LoginSelectorLoginList_Change(element)  {
    var selectorValue=element.value;
    
    if (selectorValue.toLowerCase() != "none")  {
        window.open("/Go.aspx?to=" + selectorValue, "_top");
    }    
}
