/**
 * @http://www.faqs.org/docs/htmltut/linking/linking_famsupp_114.html
 */

function loadPage(list) {
  
  var red_url = list.options[list.selectedIndex].value.toString();  
  if (red_url.search("http://") == -1) {
    location.href = list.options[list.selectedIndex].value;
  }

}

