function load1(form) {
	     var url = form.Llist_1.options[form.Llist_1.selectedIndex].value;
	     if (url != '') location.href = url;
	     return false;
}

function FrontPage_Form2_Validator(theForm)
{

  if (theForm.Llist_1.selectedIndex < 0)
  {
    alert("Please select one of the \"Italy\" options.");
    theForm.Llist_1.focus();
    return (false);
  }
  return (true);
}