EKZSyte.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. --------------------------------------------------------------------------------------------------
  2. //index.html
  3. <html>
  4. <head>
  5. <title>Ле Н.В ИС.09.18.1</title>
  6. </head>
  7. <body>
  8. <script type="text/javascript">
  9. var windowObjectReference = null;
  10. var windowFeatures = "left=200px, top=200px, width=300px, height=300px";
  11. function openFFPromotionPopup() {
  12. if(windowObjectReference == null || windowObjectReference.closed)
  13. {
  14. windowObjectReference = window.open("retro.html",
  15. "PromoteFirefoxWindowName", windowFeatures);
  16. }
  17. else
  18. {
  19. windowObjectReference.focus();
  20. };
  21. }
  22. </script>
  23. Экзамен 19.04.2022, Ле Н.В, ИС.09.18.1
  24. <p><a href="retro.html" target="PromoteFirefoxWindowName"
  25. onclick="openFFPromotionPopup(); return false;"
  26. title="1"
  27. >Перейти на страницу 2 </a></p>
  28. </body>
  29. </html>
  30. --------------------------------------------------------------------------------------------------
  31. //retro.html
  32. <html>
  33. <head>
  34. <title>Ле Н.В ИС.09.18.1</title>
  35. <link rel="stylesheet" media="screen" href="style.css">
  36. </head>
  37. <body>
  38. <script type="text/javascript">
  39. var windowObjectReference1 = null;
  40. var windowFeatures1 = "left=300px,top=300px,width=500px, height=500px";
  41. function openFFPromotionPopup1() {
  42. if(windowObjectReference1 == null || windowObjectReference1.closed)
  43. {
  44. windowObjectReference1 = window.open("http://izi.vlsu.ru/",
  45. "PromoteFirefoxWindowName1", windowFeatures1);
  46. }
  47. else
  48. {
  49. windowObjectReference1.focus();
  50. };
  51. }
  52. </script>
  53. Экзамен 19.04.2022, Ле Н.В, ИС.09.18.1
  54. <p><a href="http://izi.vlsu.ru/" target="PromoteFirefoxWindowName1"
  55. onclick="openFFPromotionPopup1(); return false;"
  56. title="2"
  57. >Перейти на izi.vlsu.ru</a></p>
  58. </body>
  59. </html>
  60. --------------------------------------------------------------------------------------------------
  61. //style.css
  62. body{
  63. background: green;
  64. height: 500px;
  65. }
  66. --------------------------------------------------------------------------------------------------