
 function change_bg_color(bg_color) {

  document.getElementById('counter_preview').bgColor=bg_color;

 }

 function delete_query(confirm_txt) {

  if(confirm( confirm_txt )) {

   return true;

  }
  else {

   return false;

  }

 }