function openWin_link() {
         var form = document.frmLeftSearch;
         var val = form.sample.options[form.sample.options.selectedIndex].value;
         switch ( val ) {
                 case "" :
                       break;
                 default :
                       location.href = val;
                       break;
                }
}
