function pulldown (name)
//Sends browser to the value of the pulldown....use 'this'
 {  
 var newurl = name.options[name.selectedIndex].value;
 if (newurl=='') return false;
 top.location.href=newurl;
 }