﻿// JScript File

function goToPage(selectID)
{
    var x = document.getElementById(selectID).selectedIndex;
    var newUrl = document.getElementById(selectID).options[x].value;
    if ((newUrl != null) && (newUrl != 'Select'))
        location.href = newUrl;
}