function Start (page) {
  OpenWin = this.open(page, "secondWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,width=300,height=500,resizable=no");
 	OpenWin.moveTo(window.screen.availWidth - 320, 10);
 	OpenWin.opener = self;
}

function checkFormTwo() {
    var failed = false;
	  if (orderform.destination.selectedIndex == 0) {
  	  alert('Please select a destination.');
      document.orderform.destination.focus();
  	  failed = true;
  	}
    if (failed)
        return false;
    else
        return true;
}

function textsubmit() {
		if (checkFormTwo()) {document.orderform.submit();}
}