// pop window ... 
function popPage(href,name,options) { 
  if(href) { 
    if(options==null) { 
      options="location=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,toolbar=yes"; 
    } 
    if(name==null) { 
      name="popWindow1"; 
    } 
    var poppedWindow=window.open(href,name,options); 
    poppedWindow.focus(); 
  } 
} // end 


// ftr subscribe pull down ... 
function surfto(form) {
	var myindex=form.select1.selectedIndex
    if (form.select1.options[myindex].value != "0") {
    location=form.select1.options[myindex].value;}
}  // end 