// JavaScript Document      
function deleteCodeset(url){
  var answer = confirm ('WARNING!!!! If you delete this codeset any active codes will stop working! Are you sure you want to delete this item?');
  if (answer){
    window.location=url;
  }
   
   function popup(url){
      window.open(url,"Download","menubar=no,width=430,height=360,toolbar=no");
   
   }

}