k.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. function openb(){
  2. var modal = document.getElementById("modal");
  3. if(modal.style.display === 'none'){
  4. modal.style.display = 'flex';
  5. }
  6. else{
  7. modal.style.display = 'none';
  8. }
  9. };
  10. function closeb(){
  11. var modal = document.getElementById("modal");
  12. if(modal.style.display === 'flex'){
  13. modal.style.display = 'none';
  14. }
  15. };
  16. function openbb(){
  17. var modal1 = document.getElementById("modal1");
  18. if(modal1.style.display === 'none'){
  19. modal1.style.display = 'flex';
  20. }
  21. else{
  22. modal1.style.display = 'none';
  23. }
  24. };
  25. function closebb(){
  26. var modal1 = document.getElementById("modal1");
  27. if(modal1.style.display === 'flex'){
  28. modal1.style.display = 'none';
  29. }
  30. };
  31. function openbbb(){
  32. var modal1 = document.getElementById("modal3");
  33. if(modal1.style.display === 'none'){
  34. modal1.style.display = 'flex';
  35. }
  36. else{
  37. modal1.style.display = 'none';
  38. }
  39. };
  40. function closebbb(){
  41. var modal1 = document.getElementById("modal3");
  42. if(modal1.style.display === 'flex'){
  43. modal1.style.display = 'none';
  44. }
  45. };