
function ow(u,n,p){
window.open(u,n,p)
}

function JURL(selection) 
   {
      var tempIndex, selectedURL;
      tempIndex = selection.selectedIndex;
      selectedURL = selection.options[tempIndex].value;
      window.top.location.href = selectedURL;
   }

function addToFavorites(URL, Title)
{
    // Make sure this is Internet Explorer
    if (navigator.appName == "Microsoft Internet Explorer")
    {
        // Make sure it is at least version 4.0
        var appVer = navigator.appVersion;
        if (parseInt(appVer.charAt(0),10) > 3)
        {
            window.external.AddFavorite(URL,Title);
        }
    }
}