// functions.js

function askconfirm(txt) {
    return confirm(txt);
}
//-->

function jumpMenu(el){ 
url = el.options[el.selectedIndex].value; 
if(url == '#'){ 
   return false; 
   } 
   else { 
   window.open(url,'_self'); 
   } 
} 
