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_store_page(sel)
{
	var index = sel.selectedIndex;
	if (index < 0 || sel[index].value == '#') return;
	
	document.new_link_location.action = sel[index].value;
	document.new_link_location.method = "post";
	document.new_link_location.submit();
}