// Jump Selector
   function jM(targ,selObj,restore){
   eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
   if (restore) selObj.selectedIndex=0;
}

// @ Add to Favorite
window.onload = function(){
  document.getElementById('add_to_fav').onclick = function(){
    var title = 'Cheap Cigarettes at tobaccoandcigarettes.com';
    var url = 'http://www.tobaccoandcigarettes.com/';
    if(window.sidebar){
      window.sidebar.addPanel(title, url, '');
    } else if(window.opera && window.print){
      var mbm = document.createElement('a');
      mbm.setAttribute('rel', 'sidebar');
      mbm.setAttribute('href', url);
      mbm.setAttribute('title', title);
      mbm.click();
    } else if(document.all){
      window.external.AddFavorite(url, title);
    }
  }
}