<!--
function change_page()
{
  var x = document.getElementById("store_select");

  document.new_link_location.action = x.options[x.selectedIndex].value;

  document.new_link_location.method = "post";
  document.new_link_location.submit();

}

function change_page_named( page_url )
{
  document.new_link_location_blank.action = page_url;

  document.new_link_location_blank.method = "post";
  document.new_link_location_blank.submit();

}

-->
