// JavaScript Document      
function deleteProject(url){
  var answer = confirm ('WARNING!!!! If you delete this project any active codes in the codesets will stop working! Are you sure you want to delete this item?');
  if (answer){
    window.location=url;
  }


}
