
function GoForLogin(el)
{
    var SIndex = document.getElementById(el).options.selectedIndex;
    var GoFor = document.getElementById(el).options[SIndex].value;
    if(GoFor=="") {
        alert("Please make a selection.");
    } else {
        window.open(GoFor);        
    }
}
