Guest User

Untitled

a guest
May 27th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.04 KB | None | 0 0
  1. <?php
  2. function ValidateEmail($email)
  3. {
  4. $pattern = '/^([0-9a-z]([-.\w]*[0-9a-z])*@(([0-9a-z])+([-\w]*[0-9a-z])*\.)+[a-z]{2,6})$/i';
  5. return preg_match($pattern, $email);
  6. }
  7. if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['formid'] == 'indexform2')
  8. {
  9. $mailto = 'visa-pro1@mail.ru';
  10. $mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;
  11. $mailcc = 'manara1974@mail.ru';
  12. $subject = 'Заявка с VisaPRO.KZ';
  13. $message = 'Values submitted from web site form:';
  14. $success_url = './thanks.html';
  15. $error_url = '';
  16. $error = '';
  17. $eol = "\n";
  18. $max_filesize = isset($_POST['filesize']) ? $_POST['filesize'] * 1024 : 1024000;
  19. $boundary = md5(uniqid(time()));
  20. $header = 'From: '.$mailfrom.$eol;
  21. $header .= 'Reply-To: '.$mailfrom.$eol;
  22. $header .= 'Cc: '.$mailcc.$eol;
  23. $header .= 'MIME-Version: 1.0'.$eol;
  24. $header .= 'Content-Type: multipart/mixed; boundary="'.$boundary.'"'.$eol;
  25. $header .= 'X-Mailer: PHP v'.phpversion().$eol;
  26. if (!ValidateEmail($mailfrom))
  27. {
  28. $error .= "The specified email address is invalid!\n<br>";
  29. }
  30. if (!empty($error))
  31. {
  32. $errorcode = file_get_contents($error_url);
  33. $replace = "##error##";
  34. $errorcode = str_replace($replace, $error, $errorcode);
  35. echo $errorcode;
  36. exit;
  37. }
  38. $internalfields = array ("submit", "reset", "send", "filesize", "formid", "captcha_code", "recaptcha_challenge_field", "recaptcha_response_field");
  39. $message .= $eol;
  40. $message .= "IP Address : ";
  41. $message .= $_SERVER['REMOTE_ADDR'];
  42. $message .= $eol;
  43. foreach ($_POST as $key => $value)
  44. {
  45. if (!in_array(strtolower($key), $internalfields))
  46. {
  47. if (!is_array($value))
  48. {
  49. $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . $eol;
  50. }
  51. else
  52. {
  53. $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . $eol;
  54. }
  55. }
  56. }
  57. $body = 'This is a multi-part message in MIME format.'.$eol.$eol;
  58. $body .= '--'.$boundary.$eol;
  59. $body .= 'Content-Type: text/plain; charset=UTF-8'.$eol;
  60. $body .= 'Content-Transfer-Encoding: 8bit'.$eol;
  61. $body .= $eol.stripslashes($message).$eol;
  62. if (!empty($_FILES))
  63. {
  64. foreach ($_FILES as $key => $value)
  65. {
  66. if ($_FILES[$key]['error'] == 0 && $_FILES[$key]['size'] <= $max_filesize)
  67. {
  68. $body .= '--'.$boundary.$eol;
  69. $body .= 'Content-Type: '.$_FILES[$key]['type'].'; name='.$_FILES[$key]['name'].$eol;
  70. $body .= 'Content-Transfer-Encoding: base64'.$eol;
  71. $body .= 'Content-Disposition: attachment; filename='.$_FILES[$key]['name'].$eol;
  72. $body .= $eol.chunk_split(base64_encode(file_get_contents($_FILES[$key]['tmp_name']))).$eol;
  73. }
  74. }
  75. }
  76. $body .= '--'.$boundary.'--'.$eol;
  77. if ($mailto != '')
  78. {
  79. mail($mailto, $subject, $body, $header);
  80. }
  81. header('Location: '.$success_url);
  82. exit;
  83. }
  84. if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['formid'] == 'indexform1')
  85. {
  86. $mailto = 'visa-pro1@mail.ru';
  87. $mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;
  88. $mailcc = 'manara1974@mail.ru';
  89. $subject = 'Заявка с VisaPRO.KZ';
  90. $message = 'Values submitted from web site form:';
  91. $success_url = './thanks.html';
  92. $error_url = '';
  93. $error = '';
  94. $eol = "\n";
  95. $max_filesize = isset($_POST['filesize']) ? $_POST['filesize'] * 1024 : 1024000;
  96. $boundary = md5(uniqid(time()));
  97. $header = 'From: '.$mailfrom.$eol;
  98. $header .= 'Reply-To: '.$mailfrom.$eol;
  99. $header .= 'Cc: '.$mailcc.$eol;
  100. $header .= 'MIME-Version: 1.0'.$eol;
  101. $header .= 'Content-Type: multipart/mixed; boundary="'.$boundary.'"'.$eol;
  102. $header .= 'X-Mailer: PHP v'.phpversion().$eol;
  103. if (!ValidateEmail($mailfrom))
  104. {
  105. $error .= "The specified email address is invalid!\n<br>";
  106. }
  107. if (!empty($error))
  108. {
  109. $errorcode = file_get_contents($error_url);
  110. $replace = "##error##";
  111. $errorcode = str_replace($replace, $error, $errorcode);
  112. echo $errorcode;
  113. exit;
  114. }
  115. $internalfields = array ("submit", "reset", "send", "filesize", "formid", "captcha_code", "recaptcha_challenge_field", "recaptcha_response_field");
  116. $message .= $eol;
  117. $message .= "IP Address : ";
  118. $message .= $_SERVER['REMOTE_ADDR'];
  119. $message .= $eol;
  120. foreach ($_POST as $key => $value)
  121. {
  122. if (!in_array(strtolower($key), $internalfields))
  123. {
  124. if (!is_array($value))
  125. {
  126. $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . $eol;
  127. }
  128. else
  129. {
  130. $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . $eol;
  131. }
  132. }
  133. }
  134. $body = 'This is a multi-part message in MIME format.'.$eol.$eol;
  135. $body .= '--'.$boundary.$eol;
  136. $body .= 'Content-Type: text/plain; charset=UTF-8'.$eol;
  137. $body .= 'Content-Transfer-Encoding: 8bit'.$eol;
  138. $body .= $eol.stripslashes($message).$eol;
  139. if (!empty($_FILES))
  140. {
  141. foreach ($_FILES as $key => $value)
  142. {
  143. if ($_FILES[$key]['error'] == 0 && $_FILES[$key]['size'] <= $max_filesize)
  144. {
  145. $body .= '--'.$boundary.$eol;
  146. $body .= 'Content-Type: '.$_FILES[$key]['type'].'; name='.$_FILES[$key]['name'].$eol;
  147. $body .= 'Content-Transfer-Encoding: base64'.$eol;
  148. $body .= 'Content-Disposition: attachment; filename='.$_FILES[$key]['name'].$eol;
  149. $body .= $eol.chunk_split(base64_encode(file_get_contents($_FILES[$key]['tmp_name']))).$eol;
  150. }
  151. }
  152. }
  153. $body .= '--'.$boundary.'--'.$eol;
  154. if ($mailto != '')
  155. {
  156. mail($mailto, $subject, $body, $header);
  157.  
  158. }
  159. header('Location: '.$success_url);
  160. exit;
  161. }
  162. if ($_SERVER['REQUEST_METHOD'] == 'POST' && $_POST['formid'] == 'indexform3')
  163. {
  164. $mailto = 'visa-pro1@mail.ru';
  165. $mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;
  166. $mailcc = 'manara1974@mail.ru';
  167. $subject = 'Заявка с VisaPRO.KZ';
  168. $message = 'Values submitted from web site form:';
  169. $success_url = './thanks.html';
  170. $error_url = '';
  171. $error = '';
  172. $eol = "\n";
  173. $max_filesize = isset($_POST['filesize']) ? $_POST['filesize'] * 1024 : 1024000;
  174. $boundary = md5(uniqid(time()));
  175. $header = 'From: '.$mailfrom.$eol;
  176. $header .= 'Reply-To: '.$mailfrom.$eol;
  177. $header .= 'Cc: '.$mailcc;
  178. $header .= 'MIME-Version: 1.0'.$eol;
  179. $header .= 'Content-Type: multipart/mixed; boundary="'.$boundary.'"'.$eol;
  180. $header .= 'X-Mailer: PHP v'.phpversion().$eol;
  181. if (!ValidateEmail($mailfrom))
  182. {
  183. $error .= "The specified email address is invalid!\n<br>";
  184. }
  185. if (!empty($error))
  186. {
  187. $errorcode = file_get_contents($error_url);
  188. $replace = "##error##";
  189. $errorcode = str_replace($replace, $error, $errorcode);
  190. echo $errorcode;
  191. exit;
  192. }
  193. $internalfields = array ("submit", "reset", "send", "filesize", "formid", "captcha_code", "recaptcha_challenge_field", "recaptcha_response_field");
  194. $message .= $eol;
  195. $message .= "IP Address : ";
  196. $message .= $_SERVER['REMOTE_ADDR'];
  197. $message .= $eol;
  198. foreach ($_POST as $key => $value)
  199. {
  200. if (!in_array(strtolower($key), $internalfields))
  201. {
  202. if (!is_array($value))
  203. {
  204. $message .= ucwords(str_replace("_", " ", $key)) . " : " . $value . $eol;
  205. }
  206. else
  207. {
  208. $message .= ucwords(str_replace("_", " ", $key)) . " : " . implode(",", $value) . $eol;
  209. }
  210. }
  211. }
  212. $body = 'This is a multi-part message in MIME format.'.$eol.$eol;
  213. $body .= '--'.$boundary.$eol;
  214. $body .= 'Content-Type: text/plain; charset=UTF-8'.$eol;
  215. $body .= 'Content-Transfer-Encoding: 8bit'.$eol;
  216. $body .= $eol.stripslashes($message).$eol;
  217. if (!empty($_FILES))
  218. {
  219. foreach ($_FILES as $key => $value)
  220. {
  221. if ($_FILES[$key]['error'] == 0 && $_FILES[$key]['size'] <= $max_filesize)
  222. {
  223. $body .= '--'.$boundary.$eol;
  224. $body .= 'Content-Type: '.$_FILES[$key]['type'].'; name='.$_FILES[$key]['name'].$eol;
  225. $body .= 'Content-Transfer-Encoding: base64'.$eol;
  226. $body .= 'Content-Disposition: attachment; filename='.$_FILES[$key]['name'].$eol;
  227. $body .= $eol.chunk_split(base64_encode(file_get_contents($_FILES[$key]['tmp_name']))).$eol;
  228. }
  229. }
  230. }
  231. $body .= '--'.$boundary.'--'.$eol;
  232. if ($mailto != '')
  233. {
  234. mail($mailto, $subject, $body, $header);
  235. }
  236. header('Location: '.$success_url);
  237.  
  238.  
  239. exit;
  240. }
  241. ?>
  242. <!doctype html>
  243. <html lang="ru">
  244. <head>
  245. <meta charset="utf-8">
  246. <title>VisaPRO | Центр визовой поддержки в Алматы</title>
  247. <meta name="" content="">
  248. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  249. <link href="flag_orange_1331.ico" rel="shortcut icon">
  250. <link href="index.css" rel="stylesheet">
  251. <script src="jquery-1.11.1.min.js"></script>
  252. <script>
  253. function ValidateindexForm1(theForm)
  254. {
  255. var regexp;
  256. if (theForm.indexEditbox3.value == "")
  257. {
  258. alert("Введите свое имя!");
  259. theForm.indexEditbox3.focus();
  260. return false;
  261. }
  262. if (theForm.indexEditbox3.value.length < 3)
  263. {
  264. alert("Введите свое имя!");
  265. theForm.indexEditbox3.focus();
  266. return false;
  267. }
  268. if (theForm.indexEditbox3.value.length > 20)
  269. {
  270. alert("Введите свое имя!");
  271. theForm.indexEditbox3.focus();
  272. return false;
  273. }
  274. if (theForm.indexEditbox4.value == "")
  275. {
  276. alert("Введите свой номер!");
  277. theForm.indexEditbox4.focus();
  278. return false;
  279. }
  280. if (theForm.indexEditbox4.value.length < 5)
  281. {
  282. alert("Введите свой номер!");
  283. theForm.indexEditbox4.focus();
  284. return false;
  285. }
  286. if (theForm.indexEditbox4.value.length > 13)
  287. {
  288. alert("Введите свой номер!");
  289. theForm.indexEditbox4.focus();
  290. return false;
  291. }
  292. return true;
  293. }
  294. </script>
  295. <script>
  296. function ValidateindexForm11(theForm)
  297. {
  298. var regexp;
  299. if (theForm.indexEditbox1.value == "")
  300. {
  301. alert("Введите свое имя!");
  302. theForm.indexEditbox1.focus();
  303. return false;
  304. }
  305. if (theForm.indexEditbox1.value.length < 4)
  306. {
  307. alert("Введите свое имя!");
  308. theForm.indexEditbox1.focus();
  309. return false;
  310. }
  311. if (theForm.indexEditbox1.value.length > 20)
  312. {
  313. alert("Введите свое имя!");
  314. theForm.indexEditbox1.focus();
  315. return false;
  316. }
  317. if (theForm.indexEditbox2.value == "")
  318. {
  319. alert("Введите свой номер!");
  320. theForm.indexEditbox2.focus();
  321. return false;
  322. }
  323. if (theForm.indexEditbox2.value.length < 5)
  324. {
  325. alert("Введите свой номер!");
  326. theForm.indexEditbox2.focus();
  327. return false;
  328. }
  329. if (theForm.indexEditbox2.value.length > 14)
  330. {
  331. alert("Введите свой номер!");
  332. theForm.indexEditbox2.focus();
  333. return false;
  334. }
  335. return true;
  336. }
  337. </script>
  338. <script src="fancybox/jquery.easing-1.3.pack.js"></script>
  339. <link rel="stylesheet" href="fancybox/jquery.fancybox-1.3.0.css">
  340. <script src="fancybox/jquery.fancybox-1.3.0.pack.js"></script>
  341. <script src="fancybox/jquery.mousewheel-3.0.2.pack.js"></script>
  342. <script>
  343. function ValidateindexForm1(theForm)
  344. {
  345. var regexp;
  346. if (theForm.indexEditbox5.value == "")
  347. {
  348. alert("Введите свое имя!");
  349. theForm.indexEditbox5.focus();
  350. return false;
  351. }
  352. if (theForm.indexEditbox5.value.length < 3)
  353. {
  354. alert("Введите свое имя!");
  355. theForm.indexEditbox5.focus();
  356. return false;
  357. }
  358. if (theForm.indexEditbox5.value.length > 20)
  359. {
  360. alert("Введите свое имя!");
  361. theForm.indexEditbox5.focus();
  362. return false;
  363. }
  364. if (theForm.indexEditbox6.value == "")
  365. {
  366. alert("Введите свой номер!");
  367. theForm.indexEditbox6.focus();
  368. return false;
  369. }
  370. if (theForm.indexEditbox6.value.length < 5)
  371. {
  372. alert("Введите свой номер!");
  373. theForm.indexEditbox6.focus();
  374. return false;
  375. }
  376. if (theForm.indexEditbox6.value.length > 13)
  377. {
  378. alert("Введите свой номер!");
  379. theForm.indexEditbox6.focus();
  380. return false;
  381. }
  382. return true;
  383. }
  384. </script>
  385. <script src="wwb10.min.js"></script>
  386. <script>
  387. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  388. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  389. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  390. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  391. ga('create', 'UA-59973423-1', 'auto');
  392. ga('send', 'pageview');
  393. </script>
  394. <!-- Yandex.Metrika counter --><script type="text/javascript"> (function (d, w, c) { (w[c] = w[c] || []).push(function() { try { w.yaCounter31705466 = new Ya.Metrika({ id:31705466, clickmap:true, trackLinks:true, accurateTrackBounce:true, webvisor:true, trackHash:true }); } catch(e) { } }); var n = d.getElementsByTagName("script")[0], s = d.createElement("script"), f = function () { n.parentNode.insertBefore(s, n); }; s.type = "text/javascript"; s.async = true; s.src = "https://mc.yandex.ru/metrika/watch.js"; if (w.opera == "[object Opera]") { d.addEventListener("DOMContentLoaded", f, false); } else { f(); } })(document, window, "yandex_metrika_callbacks");</script><noscript><div><img src="https://mc.yandex.ru/watch/31705466" style="position:absolute; left:-9999px;" alt="" /></div></noscript><!-- /Yandex.Metrika counter -->
  395.  
  396. </head>
  397. <body>
  398. <div id="indexLayer6" style="position:absolute;text-align:center;left:0px;top:2934px;width:100%;height:389px;z-index:131;min-width:1000px;">
  399. <div id="indexLayer6_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  400. <div id="wb_indexImage19" style="position:absolute;left:251px;top:254px;width:108px;height:119px;z-index:4;">
  401. <img src="images/cdbg.png" id="indexImage19" alt=""></div>
  402. <div id="wb_indexImage20" style="position:absolute;left:361px;top:254px;width:108px;height:119px;z-index:5;">
  403. <img src="images/cdbg.png" id="indexImage20" alt=""></div>
  404. <div id="wb_indexImage18" style="position:absolute;left:470px;top:254px;width:108px;height:119px;z-index:6;">
  405. <img src="images/cdbg.png" id="indexImage18" alt=""></div>
  406. <iframe name="InlineFrame1" id="indexInlineFrame1" style="position:absolute;left:478px;top:266px;width:89px;height:58px;z-index:7;" src="./countdown_seconds.html" scrolling="no"></iframe>
  407. <div id="wb_indexText50" style="position:absolute;left:218px;top:115px;width:357px;height:81px;text-align:right;z-index:8;">
  408. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong>Оставьте заявку прямо сейчас<br>и получите подарок </strong>-</span><span style="color:#4b0082;font-family:'trebuchet ms';font-size:21px;"><strong> </strong></span><span style="color:#191970;font-family:'trebuchet ms';font-size:21px;"><strong>скидку 15%</strong></span><span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><br>на оформление визы</span></div>
  409. <div id="wb_indexText51" style="position:absolute;left:245px;top:26px;width:333px;height:80px;text-align:right;z-index:9;">
  410. <span style="color:#191970;font-family:'trebuchet ms';font-size:32px;"><strong>&#1057;&#1050;&#1048;&#1044;&#1050;&#1040; 15%<br>&#1053;&#1040; &#1042;&#1048;&#1047;&#1059;!</strong></span></div>
  411. <div id="wb_indexImage17" style="position:absolute;left:27px;top:26px;width:256px;height:317px;z-index:10;">
  412. <img src="images/313.png" id="indexImage17" alt=""></div>
  413. <div id="wb_indexText52" style="position:absolute;left:495px;top:324px;width:60px;height:18px;text-align:center;z-index:11;">
  414. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>секунд</strong></span></div>
  415. <div id="wb_indexText53" style="position:absolute;left:384px;top:324px;width:60px;height:18px;text-align:center;z-index:12;">
  416. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>минут</strong></span></div>
  417. <iframe name="InlineFrame1" id="indexInlineFrame2" style="position:absolute;left:372px;top:264px;width:85px;height:59px;z-index:13;" src="./countdown_minutes.html" scrolling="no"></iframe>
  418. <iframe name="InlineFrame1" id="indexInlineFrame3" style="position:absolute;left:265px;top:264px;width:77px;height:58px;z-index:14;" src="./countdown_hours.html" scrolling="no"></iframe>
  419. <div id="wb_indexText54" style="position:absolute;left:274px;top:324px;width:60px;height:18px;text-align:center;z-index:15;">
  420. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>часов</strong></span></div>
  421. <div id="wb_indexForm3" style="position:absolute;left:593px;top:16px;width:337px;height:347px;z-index:16;">
  422. <form name="indexForm1" method="post" action="<?php echo basename(__FILE__); ?>" enctype="multipart/form-data" accept-charset="UTF-8" id="indexForm3" onsubmit="return ValidateindexForm1(this)">
  423. <input type="hidden" name="formid" value="indexform3">
  424. <input type="text" id="indexEditbox5" style="position:absolute;left:33px;top:99px;width:268px;height:54px;line-height:54px;z-index:0;" name="Имя" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1048;&#1052;&#1071;">
  425. <input type="text" id="indexEditbox6" style="position:absolute;left:33px;top:170px;width:268px;height:54px;line-height:54px;z-index:1;" name="Номер" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1058;&#1045;&#1051;&#1045;&#1060;&#1054;&#1053;">
  426.  
  427. <input type="submit" onclick="goog_report_conversion" id="indexButton3" name="Кнопка" value="ОСТАВИТЬ ЗАЯВКУ" style="position:absolute;left:33px;top:245px;width:274px;height:66px;z-index:2;">
  428. <div id="wb_indexText49" style="position:absolute;left:10px;top:319px;width:316px;height:18px;text-align:center;z-index:3;">
  429. <span style="color:#000000;font-family:'trebuchet ms';font-size:13px;">&#1042;&#1072;&#1096;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1077;&#1088;&#1077;&#1076;&#1072;&#1085;&#1099; &#1090;&#1088;&#1077;&#1090;&#1100;&#1080;&#1084; &#1083;&#1080;&#1094;&#1072;&#1084;.</span></div>
  430. </form>
  431. </div>
  432. <div id="wb_indexText48" style="position:absolute;left:584px;top:26px;width:358px;height:78px;text-align:center;z-index:17;">
  433. <span style="color:#000000;font-family:'trebuchet ms';font-size:20px;"><strong>ЗАКАЖИТЕ<br>БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ<br>И МЕНЕДЖЕР ВАМ ПЕРЕЗВОНИТ</strong></span></div>
  434. <div id="wb_indexText55" style="position:absolute;left:295px;top:222px;width:250px;height:24px;text-align:center;z-index:18;">
  435. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><strong>&#1044;&#1054; &#1050;&#1054;&#1053;&#1062;&#1040; &#1040;&#1050;&#1062;&#1048;&#1048;</strong></span></div>
  436. </div>
  437. </div>
  438. <div id="indexLayer5" style="position:absolute;text-align:center;left:0px;top:2135px;width:100%;height:799px;z-index:132;min-width:1000px;">
  439. <div id="indexLayer5_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  440. <div id="wb_indexText24" style="position:absolute;left:63px;top:12px;width:874px;height:43px;text-align:center;z-index:19;">
  441. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;"><strong>6 ПРИЧИН ВЫБРАТЬ НАС</strong></span></div>
  442. <div id="wb_indexImage11" style="position:absolute;left:21px;top:101px;width:128px;height:128px;z-index:20;">
  443. <img src="images/appointment_1253.png" id="indexImage11" alt=""></div>
  444. <div id="wb_indexText25" style="position:absolute;left:21px;top:239px;width:321px;height:24px;z-index:21;text-align:left;">
  445. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>ГОТОВАЯ ВИЗА ОТ 2Х ДНЕЙ</strong></span></div>
  446. <div id="wb_indexText26" style="position:absolute;left:21px;top:277px;width:324px;height:100px;z-index:22;text-align:left;">
  447. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>&#1042;&#1099; &#1089;&#1086;&#1073;&#1080;&#1088;&#1072;&#1077;&#1090;&#1077; &#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081;<br>&#1087;&#1072;&#1082;&#1077;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;.<br>Д&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; &#1085;&#1072; &#1086;&#1092;&#1086;&#1088;&#1084;&#1083;&#1077;&#1085;&#1080;&#1077;.<br>&#1063;&#1077;&#1088;&#1077;&#1079; пару дней &#1074;&#1099; &#1087;&#1086;&#1083;&#1091;&#1095;&#1072;&#1077;&#1090;&#1077;<br>&#1075;&#1086;&#1090;&#1086;&#1074;&#1091;&#1102; &#1074;&#1080;&#1079;&#1091; &#1080; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;</strong></span></div>
  448. <div id="wb_indexImage12" style="position:absolute;left:365px;top:101px;width:128px;height:128px;z-index:23;">
  449. <img src="images/file_locked_7343.png" id="indexImage12" alt=""></div>
  450. <div id="wb_indexText27" style="position:absolute;left:371px;top:239px;width:305px;height:24px;z-index:24;text-align:left;">
  451. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>СОХРАННОСТЬ ДОКУМЕНТОВ</strong></span></div>
  452. <div id="wb_indexText39" style="position:absolute;left:371px;top:277px;width:324px;height:120px;z-index:25;text-align:left;">
  453. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>Мы гарантируем сохранность ваших документов и персональных данных.<br>Все сотрудники проходят строгий контроль службы безопасности.<br>В итоге к работе допускаются только надёжные люди</strong></span></div>
  454. <div id="wb_indexImage13" style="position:absolute;left:719px;top:101px;width:128px;height:128px;z-index:26;">
  455. <img src="images/button_ok_2950.png" id="indexImage13" alt=""></div>
  456. <div id="wb_indexText40" style="position:absolute;left:719px;top:239px;width:250px;height:24px;z-index:27;text-align:left;">
  457. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>ГАРАНТИЯ РЕЗУЛЬТАТА</strong></span></div>
  458. <div id="wb_indexText41" style="position:absolute;left:719px;top:277px;width:267px;height:80px;z-index:28;text-align:left;">
  459. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>Мы даём гарантии на свои услуги.<br>Ответсвенные сотрудники<br>доведут доверянную работу<br>до конца</strong></span></div>
  460. <div id="wb_indexImage14" style="position:absolute;left:21px;top:440px;width:128px;height:128px;z-index:29;">
  461. <img src="images/clock4_7814.png" id="indexImage14" alt=""></div>
  462. <div id="wb_indexText42" style="position:absolute;left:21px;top:578px;width:324px;height:24px;z-index:30;text-align:left;">
  463. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>СТРОГОЕ СОБЛЮДЕНИЕ СРОКОВ</strong></span></div>
  464. <div id="wb_indexText43" style="position:absolute;left:21px;top:617px;width:324px;height:100px;z-index:31;text-align:left;">
  465. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>Работа нашей компании<br>строго регламентирована<br>и контролируется на каждом этапе.<br>Исполнение сроков - приоритет<br>в нашей работе</strong></span></div>
  466. <div id="wb_indexText44" style="position:absolute;left:371px;top:637px;width:324px;height:120px;z-index:32;text-align:left;">
  467. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>Наш центр приема заказов будет вам в любое время дня и ночи</strong></span></div>
  468. <div id="wb_indexText45" style="position:absolute;left:371px;top:578px;width:305px;height:48px;z-index:33;text-align:left;">
  469. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>ПРИНИМАЕМ ЗАКАЗЫ<br>КРУГЛОСУТОЧНО</strong></span></div>
  470. <div id="wb_indexImage15" style="position:absolute;left:365px;top:440px;width:128px;height:128px;z-index:34;">
  471. <img src="images/kcall_4539.png" id="indexImage15" alt=""></div>
  472. <div id="wb_indexImage16" style="position:absolute;left:715px;top:440px;width:128px;height:128px;z-index:35;">
  473. <img src="images/beos_people_6088.png" id="indexImage16" alt=""></div>
  474. <div id="wb_indexText46" style="position:absolute;left:715px;top:578px;width:250px;height:24px;z-index:36;text-align:left;">
  475. <span style="color:#191970;font-family:'trebuchet ms';font-size:19px;"><strong>ПРОФЕССИОНАЛЫ</strong></span></div>
  476. <div id="wb_indexText47" style="position:absolute;left:715px;top:617px;width:267px;height:60px;z-index:37;text-align:left;">
  477. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;"><strong>Квалифицированные специалисты помогут вам в любых сложных ситуациях</strong></span></div>
  478. </div>
  479. </div>
  480. <div id="indexLayer1" style="position:absolute;text-align:center;left:0px;top:681px;width:100%;height:384px;z-index:133;min-width:1000px;">
  481. <div id="indexLayer1_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  482. <div id="wb_indexText9" style="position:absolute;left:207px;top:71px;width:587px;height:52px;text-align:center;z-index:42;">
  483. <span style="color:#000000;font-family:'trebuchet ms';font-size:20px;">&#1054;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1077; &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1089;&#1090;&#1099; &#1082;&#1086;&#1084;&#1087;&#1072;&#1085;&#1080;&#1080; &#0171;</span><span style="color:#191970;font-family:'trebuchet ms';font-size:20px;"><u>Visa</u></span><span style="color:#ffa500;font-family:'trebuchet ms';font-size:20px;"><u>PRO</u></span><span style="color:#000000;font-family:'trebuchet ms';font-size:20px;">&#0187;<br>&#1087;&#1086;&#1084;&#1086;&#1075;&#1072;&#1102;&#1090; &#1082;&#1083;&#1080;&#1077;&#1085;&#1090;&#1072;&#1084; &#1086;&#1092;&#1086;&#1088;&#1084;&#1083;&#1103;&#1090;&#1100; &#1074;&#1080;&#1079;&#1099; &#1091;&#1078;&#1077; 3 года</span></div>
  484. <div id="wb_indexText8" style="position:absolute;left:113px;top:22px;width:774px;height:43px;text-align:center;z-index:43;">
  485. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;"><strong>Мы работаем по 3 направлениям</strong></span></div>
  486. <div id="wb_indexImage3" style="position:absolute;left:798px;top:175px;width:94px;height:90px;z-index:44;">
  487. <img src="images/18d7177669.jpg" id="indexImage3" alt=""></div>
  488. <div id="wb_indexImage4" style="position:absolute;left:103px;top:162px;width:98px;height:99px;z-index:45;">
  489. <img src="images/b295332b77.jpg" id="indexImage4" alt=""></div>
  490. <div id="wb_indexText13" style="position:absolute;left:9px;top:265px;width:287px;height:96px;text-align:center;z-index:46;">
  491. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><strong>Визовая поддержка<br>Помощь в оформлении виз<br>Шенгенские визы в Европу</strong></span></div>
  492. <div id="wb_indexText14" style="position:absolute;left:375px;top:270px;width:250px;height:72px;text-align:center;z-index:47;">
  493. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><strong>Регистрация иностранных <br>граждан<br>в Республике Казахстан</strong></span></div>
  494. <div id="wb_indexImage5" style="position:absolute;left:454px;top:175px;width:93px;height:90px;z-index:48;">
  495. <img src="images/ICON1.jpg" id="indexImage5" alt=""></div>
  496. <div id="wb_indexText12" style="position:absolute;left:708px;top:274px;width:274px;height:48px;text-align:center;z-index:49;">
  497. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><strong>Получение визовых приглашений<br>из любых стран мира</strong></span></div>
  498. </div>
  499. </div>
  500. <div id="Layer1" style="position:absolute;text-align:center;left:0px;top:70px;width:100%;height:611px;z-index:134;min-width:1000px;">
  501. <div id="Layer1_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  502. <div id="wb_indexShape2" style="position:absolute;left:147px;top:31px;width:710px;height:103px;filter:alpha(opacity=77);-moz-opacity:0.77;opacity:0.77;z-index:54;">
  503. <img src="images/img0004.png" id="indexShape2" alt="" style="width:710px;height:103px;"></div>
  504. <div id="wb_indexShape1" style="position:absolute;left:59px;top:186px;width:882px;height:367px;filter:alpha(opacity=77);-moz-opacity:0.77;opacity:0.77;z-index:55;">
  505. <img src="images/img0003.png" id="indexShape1" alt="" style="width:882px;height:367px;"></div>
  506. <div id="wb_Image8" style="position:absolute;left:252px;top:434px;width:108px;height:119px;z-index:56;">
  507. <img src="images/cdbg.png" id="Image8" alt=""></div>
  508. <div id="wb_Image4" style="position:absolute;left:362px;top:434px;width:108px;height:119px;z-index:57;">
  509. <img src="images/cdbg.png" id="Image4" alt=""></div>
  510. <div id="wb_Image3" style="position:absolute;left:471px;top:434px;width:108px;height:119px;z-index:58;">
  511. <img src="images/cdbg.png" id="Image3" alt=""></div>
  512. <iframe name="InlineFrame1" id="InlineFrame7" style="position:absolute;left:266px;top:444px;width:77px;height:58px;z-index:59;" src="./countdown_hours.html" scrolling="no"></iframe>
  513. <div id="wb_Text29" style="position:absolute;left:275px;top:504px;width:60px;height:18px;text-align:center;z-index:60;">
  514. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>часов</strong></span></div>
  515. <div id="wb_Text10" style="position:absolute;left:385px;top:504px;width:60px;height:18px;text-align:center;z-index:61;">
  516. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>минут</strong></span></div>
  517. <iframe name="InlineFrame1" id="InlineFrame6" style="position:absolute;left:373px;top:444px;width:85px;height:59px;z-index:62;" src="./countdown_minutes.html" scrolling="no"></iframe>
  518. <div id="wb_Text4" style="position:absolute;left:496px;top:504px;width:60px;height:18px;text-align:center;z-index:63;">
  519. <span style="color:#1f1f1f;font-family:'trebuchet ms';font-size:13px;"><strong>секунд</strong></span></div>
  520. <iframe name="InlineFrame1" id="InlineFrame5" style="position:absolute;left:479px;top:446px;width:89px;height:58px;z-index:64;" src="./countdown_seconds.html" scrolling="no"></iframe>
  521. <div id="wb_indexForm1" style="position:absolute;left:594px;top:196px;width:337px;height:347px;z-index:65;">
  522. <form name="indexForm11" method="post" action="<?php echo basename(__FILE__); ?>" enctype="multipart/form-data" accept-charset="UTF-8" id="indexForm1" onsubmit="return ValidateindexForm11(this)">
  523. <input type="hidden" name="formid" value="indexform1">
  524. <input type="text" id="indexEditbox1" style="position:absolute;left:33px;top:99px;width:268px;height:54px;line-height:54px;z-index:50;" name="Имя" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1048;&#1052;&#1071;">
  525. <input type="text" id="indexEditbox2" style="position:absolute;left:33px;top:170px;width:268px;height:54px;line-height:54px;z-index:51;" name="Номер" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1058;&#1045;&#1051;&#1045;&#1060;&#1054;&#1053;">
  526.  
  527. <input type="submit" onclick="goog_report_conversion" id="indexButton1" name="Кнопка" value="ОСТАВИТЬ ЗАЯВКУ" style="position:absolute;left:33px;top:245px;width:274px;height:66px;z-index:52;">
  528. <div id="wb_indexText29" style="position:absolute;left:10px;top:319px;width:316px;height:18px;text-align:center;z-index:53;">
  529. <span style="color:#000000;font-family:'trebuchet ms';font-size:13px;">&#1042;&#1072;&#1096;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1077;&#1088;&#1077;&#1076;&#1072;&#1085;&#1099; &#1090;&#1088;&#1077;&#1090;&#1100;&#1080;&#1084; &#1083;&#1080;&#1094;&#1072;&#1084;.</span></div>
  530. </form>
  531. </div>
  532. <div id="wb_indexText4" style="position:absolute;left:290px;top:401px;width:250px;height:24px;text-align:center;z-index:66;">
  533. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><strong>&#1044;&#1054; &#1050;&#1054;&#1053;&#1062;&#1040; &#1040;&#1050;&#1062;&#1048;&#1048;</strong></span></div>
  534. <div id="wb_indexText5" style="position:absolute;left:219px;top:295px;width:357px;height:81px;text-align:right;z-index:67;">
  535. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong>Оставьте заявку прямо сейчас<br>и получите подарок </strong>-</span><span style="color:#4b0082;font-family:'trebuchet ms';font-size:21px;"><strong> </strong></span><span style="color:#191970;font-family:'trebuchet ms';font-size:21px;"><strong>скидку 15%</strong></span><span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><br>на оформление визы</span></div>
  536. <div id="wb_indexText7" style="position:absolute;left:48px;top:37px;width:905px;height:86px;text-align:center;z-index:68;">
  537. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;"><strong>Визовая поддержка и регистрация,<br>получение визовых приглашений</strong></span></div>
  538. <div id="wb_indexText18" style="position:absolute;left:246px;top:206px;width:333px;height:80px;text-align:right;z-index:69;">
  539. <span style="color:#191970;font-family:'trebuchet ms';font-size:32px;"><strong>&#1057;&#1050;&#1048;&#1044;&#1050;&#1040; 15%<br>&#1053;&#1040; &#1042;&#1048;&#1047;&#1059;!</strong></span></div>
  540. <div id="wb_indexText6" style="position:absolute;left:585px;top:206px;width:358px;height:78px;text-align:center;z-index:70;">
  541. <span style="color:#000000;font-family:'trebuchet ms';font-size:20px;"><strong>ЗАКАЖИТЕ<br>БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ<br>И МЕНЕДЖЕР ВАМ ПЕРЕЗВОНИТ</strong></span></div>
  542. <div id="wb_indexImage10" style="position:absolute;left:28px;top:206px;width:256px;height:317px;z-index:71;">
  543. <img src="images/313.png" id="indexImage10" alt=""></div>
  544. </div>
  545. </div>
  546. <div id="Layer3" style="position:absolute;text-align:center;left:0px;top:1065px;width:100%;height:365px;z-index:135;min-width:1000px;">
  547. <div id="Layer3_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  548. <div id="wb_indexShape4" style="position:absolute;left:93px;top:43px;width:446px;height:277px;z-index:72;">
  549. <img src="images/img0006.png" id="indexShape4" alt="" style="width:446px;height:277px;"></div>
  550. <div id="wb_indexText16" style="position:absolute;left:130px;top:59px;width:418px;height:72px;z-index:73;text-align:left;">
  551. <span style="color:#000000;font-family:'trebuchet ms';font-size:29px;"><strong>&#1057;&#1082;&#1080;&#1076;&#1082;&#1072; 10%<br></strong></span><span style="color:#000000;font-family:'trebuchet ms';font-size:27px;"><strong>&#1087;&#1086; &#1082;&#1072;&#1088;&#1090;&#1077; <u>Visa</u></strong></span><span style="color:#ffa500;font-family:'trebuchet ms';font-size:27px;"><strong><u>PRO</u></strong></span><span style="color:#000000;font-family:'trebuchet ms';font-size:27px;"><strong> GOLD CARD</strong></span></div>
  552. <div id="wb_indexShape5" style="position:absolute;left:141px;top:251px;width:348px;height:54px;z-index:74;">
  553. <a href="javascript:displaylightbox('./zakaz.php',{width:337,height:347})" target="_self"><img class="hover" src="images/img0007_hover.png" alt="" style="border-width:0;width:348px;height:54px;"><span><img src="images/img0007.png" id="indexShape5" alt="" style="width:348px;height:54px;"></span></a></div>
  554. <div id="wb_indexImage7" style="position:absolute;left:566px;top:11px;width:350px;height:350px;z-index:75;">
  555. <img src="images/gold_card2.png" id="indexImage7" alt=""></div>
  556. <div id="wb_indexText33" style="position:absolute;left:130px;top:117px;width:405px;height:120px;z-index:76;text-align:left;">
  557. <span style="color:#000000;font-family:'trebuchet ms';font-size:19px;"><br>&#1047;&#1072;&#1082;&#1072;&#1078;&#1080;&#1090;&#1077; &#1091;&#1089;&#1083;&#1091;&#1075;&#1091; &#1091; &#1085;&#1072;&#1096;&#1077;&#1081; &#1082;&#1086;&#1084;&#1087;&#1072;&#1085;&#1080;&#1080;<br>&#1080; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1077; &#1079;&#1086;&#1083;&#1086;&#1090;&#1091;&#1102; &#1082;&#1072;&#1088;&#1090;&#1091; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1086;&#1075;&#1086;<br>&#1082;&#1083;&#1080;&#1077;&#1085;&#1090;&#1072; &#1089;&#1086; &#1089;&#1082;&#1080;&#1076;&#1082;&#1086;&#1081; 10% &#1085;&#1072; &#1074;&#1089;&#1077; &#1073;&#1091;&#1076;&#1091;&#1097;&#1080;&#1077;<br>&#1079;&#1072;&#1082;&#1072;&#1079;&#1099; &#1076;&#1083;&#1103; &#1074;&#1072;&#1089; &#1080; &#1074;&#1072;&#1096;&#1077;&#1081; &#1089;&#1077;&#1084;&#1100;&#1080;</span></div>
  558. </div>
  559. </div>
  560. <div id="Layer5" style="position:absolute;text-align:center;left:0px;top:1430px;width:100%;height:339px;z-index:136;min-width:1000px;">
  561. <div id="Layer5_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  562. <div id="wb_indexText35" style="position:absolute;left:500px;top:75px;width:421px;height:165px;z-index:77;text-align:left;">
  563. <span style="color:#ffffff;font-family:'trebuchet ms';font-size:27px;">&#1055;&#1088;&#1080;&#1103;&#1090;&#1085;&#1099;&#1081; &#1074;&#1086; &#1074;&#1089;&#1077;&#1093; &#1086;&#1090;&#1085;&#1086;&#1096;&#1077;&#1085;&#1080;&#1103;&#1093; &#1082;&#1086;&#1083;&#1083;&#1077;&#1082;&#1090;&#1080;&#1074;</span><span style="color:#ffffff;font-family:'trebuchet ms';font-size:24px;"><br><br></span><span style="color:#ffffff;font-family:'trebuchet ms';font-size:16px;">&#0171;&#1055;&#1088;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086; &#1073;&#1083;&#1072;&#1075;&#1086;&#1076;&#1072;&#1088;&#1077;&#1085; &#1079;&#1072; &#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1080;&#1074;&#1085;&#1086;&#1089;&#1090;&#1100;. &#1047;&#1072; &#1075;&#1086;&#1089;&#1090;&#1077;&#1087;&#1088;&#1080;&#1080;&#1084;&#1089;&#1090;&#1074;&#1086; &#1080; &#1087;&#1088;&#1080;&#1103;&#1090;&#1085;&#1099;&#1081;, &#1074;&#1086; &#1074;&#1089;&#1077;&#1093; &#1086;&#1090;&#1085;&#1086;&#1096;&#1077;&#1085;&#1080;&#1103;&#1093;, &#1082;&#1086;&#1083;&#1083;&#1077;&#1082;&#1090;&#1080;&#1074;. &#1055;&#1077;&#1088;&#1089;&#1086;&#1085;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1073;&#1083;&#1072;&#1075;&#1086;&#1076;&#1072;&#1088;&#1085;&#1086;&#1089;&#1090;&#1100; Манаре&#0187;.</span></div>
  564. <div id="wb_indexText36" style="position:absolute;left:300px;top:263px;width:250px;height:22px;z-index:78;text-align:left;">
  565. <span style="color:#ffffff;font-family:'trebuchet ms';font-size:16px;"><strong>&#1044;&#1080;&#1085;&#1072;&#1088; &#1058;&#1072;&#1082;&#1080;&#1091;&#1083;&#1083;&#1080;&#1085;</strong></span></div>
  566. </div>
  567. </div>
  568. <div id="Layer7" style="position:absolute;text-align:center;left:0px;top:4225px;width:100%;height:203px;z-index:137;min-width:1000px;">
  569. <div id="Layer7_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  570. <div id="wb_indexText22" style="position:absolute;left:68px;top:59px;width:865px;height:43px;text-align:center;z-index:79;">
  571. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;">&#1054;&#1057;&#1058;&#1040;&#1051;&#1048;&#1057;&#1068; &#1042;&#1054;&#1055;&#1056;&#1054;&#1057;&#1067;?! | &#1047;&#1040;&#1044;&#1040;&#1049;&#1058;&#1045; &#1048;&#1061; &#1052;&#1045;&#1053;&#1045;&#1044;&#1046;&#1045;&#1056;&#1059;</span></div>
  572. <div id="wb_indexShape10" style="position:absolute;left:363px;top:120px;width:274px;height:40px;z-index:80;">
  573. <a href="javascript:displaylightbox('./zakaz.php',{width:337,height:347})" target="_self"><img class="hover" src="images/img0018_hover.png" alt="" style="border-width:0;width:274px;height:40px;"><span><img src="images/img0018.png" id="indexShape10" alt="" style="width:274px;height:40px;"></span></a></div>
  574. </div>
  575. </div>
  576. <div id="indexLayer2" style="position:absolute;text-align:center;left:0px;top:1769px;width:100%;height:366px;z-index:138;min-width:1000px;">
  577. <div id="indexLayer2_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  578. <div id="wb_indexShape8" style="position:absolute;left:153px;top:138px;width:108px;height:105px;z-index:85;">
  579. <img src="images/img0001.png" id="indexShape8" alt="" style="width:108px;height:105px;"></div>
  580. <div id="wb_indexShape7" style="position:absolute;left:446px;top:137px;width:108px;height:105px;z-index:86;">
  581. <img src="images/img0002.png" id="indexShape7" alt="" style="width:108px;height:105px;"></div>
  582. <div id="wb_indexShape6" style="position:absolute;left:749px;top:135px;width:108px;height:105px;z-index:87;">
  583. <img src="images/img0008.png" id="indexShape6" alt="" style="width:108px;height:105px;"></div>
  584. <div id="wb_Text23" style="position:absolute;left:107px;top:248px;width:210px;height:48px;text-align:center;z-index:88;">
  585. <span style="color:#2f4f4f;font-family:'trebuchet ms';font-size:19px;"><strong>Сбор минимального<br>пакета документов</strong></span></div>
  586. <div id="wb_Text39" style="position:absolute;left:365px;top:248px;width:270px;height:70px;text-align:center;z-index:89;">
  587. <span style="color:#2f4f4f;font-family:'trebuchet ms';font-size:19px;"><strong>Передача документов<br>в компанию<br></strong></span><span style="color:#808080;font-family:'trebuchet ms';font-size:16px;">«VisaPRO» лично или через курьера</span></div>
  588. <div id="wb_Text52" style="position:absolute;left:699px;top:248px;width:210px;height:48px;text-align:center;z-index:90;">
  589. <span style="color:#2f4f4f;font-family:'trebuchet ms';font-size:19px;"><strong>Получение паспорта<br>с визой точно в срок</strong></span></div>
  590. <div id="wb_Image54" style="position:absolute;left:330px;top:164px;width:48px;height:48px;z-index:91;">
  591. <img src="images/arrow.png" id="Image54" alt=""></div>
  592. <div id="wb_Image57" style="position:absolute;left:648px;top:164px;width:48px;height:48px;z-index:92;">
  593. <img src="images/arrow.png" id="Image57" alt=""></div>
  594. <div id="wb_Image59" style="position:absolute;left:182px;top:164px;width:48px;height:48px;z-index:93;">
  595. <img src="images/pro4.png" id="Image59" alt=""></div>
  596. <div id="wb_Image60" style="position:absolute;left:476px;top:164px;width:48px;height:48px;z-index:94;">
  597. <img src="images/pro2.png" id="Image60" alt=""></div>
  598. <div id="wb_Image62" style="position:absolute;left:774px;top:164px;width:48px;height:48px;z-index:95;">
  599. <img src="images/pro1.png" id="Image62" alt=""></div>
  600. <div id="wb_indexText17" style="position:absolute;left:196px;top:32px;width:608px;height:43px;text-align:center;z-index:96;">
  601. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;"><strong>3 &#1064;&#1040;&#1043;&#1040; &#1044;&#1054; &#1055;&#1054;&#1051;&#1059;&#1063;&#1045;&#1053;&#1048;&#1071; &#1042;&#1048;&#1047;&#1067;</strong></span></div>
  602. <div id="wb_indexShape3" style="position:absolute;left:722px;top:301px;width:164px;height:32px;z-index:97;">
  603. <a href="javascript:displaylightbox('./zakaz.php',{width:337,height:347})" target="_self"><img class="hover" src="images/img0009_hover.png" alt="" style="border-width:0;width:164px;height:32px;"><span><img src="images/img0009.png" id="indexShape3" alt="" style="width:164px;height:32px;"></span></a></div>
  604. </div>
  605. </div>
  606. <div id="indexLayer3" style="position:absolute;text-align:center;left:0px;top:3331px;width:100%;height:499px;z-index:139;min-width:1000px;">
  607. <div id="indexLayer3_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  608. <div id="wb_indexText37" style="position:absolute;left:63px;top:25px;width:874px;height:43px;text-align:center;z-index:98;">
  609. <span style="color:#000000;font-family:'trebuchet ms';font-size:35px;">&#1055;&#1088;&#1077;&#1076;&#1074;&#1072;&#1088;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1072;&#1103; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1082;&#1072; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;</span></div>
  610. <div id="wb_indexText38" style="position:absolute;left:410px;top:180px;width:572px;height:87px;z-index:99;text-align:left;">
  611. <span style="color:#191970;font-family:'trebuchet ms';font-size:24px;">&#1047;&#1072;&#1075;&#1088;&#1091;&#1079;&#1080;&#1090;&#1077; &#1089;&#1082;&#1072;&#1085;&#1099; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1083;&#1080;&#1073;&#1086; &#1086;&#1090;&#1087;&#1088;&#1072;&#1074;&#1100;&#1090;&#1077; &#1080;&#1093; &#1074; Viber &#1080;&#1083;&#1080; WhatsApp, &#1080; &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1080;&#1089;&#1090;&#1099; &#0171;&#1042;&#1080;&#1079;&#1072;</span><span style="color:#ffa500;font-family:'trebuchet ms';font-size:24px;">ПРО</span><span style="color:#191970;font-family:'trebuchet ms';font-size:24px;">&#0187; &#1087;&#1088;&#1086;&#1074;&#1077;&#1088;&#1103;&#1090; &#1080;&#1093; &#1087;&#1077;&#1088;&#1077;&#1076; &#1087;&#1086;&#1076;&#1072;&#1095;&#1077;&#1081; &#1086;&#1088;&#1080;&#1075;&#1080;&#1085;&#1072;&#1083;&#1086;&#1074;</span></div>
  612. <div id="wb_indexShape13" style="position:absolute;left:408px;top:296px;width:294px;height:47px;z-index:100;">
  613. <a href="javascript:displaylightbox('./zakaz.php',{width:337,height:347})" target="_self"><img class="hover" src="images/img0014_hover.png" alt="" style="border-width:0;width:294px;height:47px;"><span><img src="images/img0014.png" id="indexShape13" alt="" style="width:294px;height:47px;"></span></a></div>
  614. </div>
  615. </div>
  616. <div id="indexLayer4" style="position:absolute;text-align:center;left:0px;top:3830px;width:100%;height:405px;z-index:140;min-width:1000px;">
  617. <div id="indexLayer4_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  618. <div id="wb_indexForm2" style="position:absolute;left:594px;top:28px;width:337px;height:347px;z-index:105;">
  619. <form name="indexForm1" method="post" action="<?php echo basename(__FILE__); ?>" enctype="multipart/form-data" accept-charset="UTF-8" id="indexForm2" onsubmit="return ValidateindexForm1(this)">
  620. <input type="hidden" name="formid" value="indexform2">
  621. <input type="text" id="indexEditbox3" style="position:absolute;left:33px;top:99px;width:268px;height:54px;line-height:54px;z-index:101;" name="Имя" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1048;&#1052;&#1071;">
  622. <input type="text" id="indexEditbox4" style="position:absolute;left:33px;top:170px;width:268px;height:54px;line-height:54px;z-index:102;" name="Номер" value="" placeholder="&#1042;&#1042;&#1045;&#1044;&#1048;&#1058;&#1045; &#1058;&#1045;&#1051;&#1045;&#1060;&#1054;&#1053;">
  623.  
  624. <input type="submit" onclick="goog_report_conversion" id="indexButton2" name="Кнопка" value="ОСТАВИТЬ ЗАЯВКУ" style="position:absolute;left:33px;top:245px;width:274px;height:66px;z-index:103;">
  625. <div id="wb_indexText21" style="position:absolute;left:10px;top:319px;width:316px;height:18px;text-align:center;z-index:104;">
  626. <span style="color:#000000;font-family:'trebuchet ms';font-size:13px;">&#1042;&#1072;&#1096;&#1080; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1077; &#1073;&#1091;&#1076;&#1091;&#1090; &#1087;&#1077;&#1088;&#1077;&#1076;&#1072;&#1085;&#1099; &#1090;&#1088;&#1077;&#1090;&#1100;&#1080;&#1084; &#1083;&#1080;&#1094;&#1072;&#1084;.</span></div>
  627. </form>
  628. </div>
  629. <div id="wb_indexShape9" style="position:absolute;left:84px;top:85px;width:324px;height:244px;filter:alpha(opacity=88);-moz-opacity:0.88;opacity:0.88;z-index:106;">
  630. <img src="images/img0010.png" id="indexShape9" alt="" style="width:324px;height:244px;"></div>
  631. <div id="wb_indexText19" style="position:absolute;left:112px;top:169px;width:277px;height:138px;z-index:107;text-align:left;">
  632. <span style="color:#000000;font-family:'trebuchet ms';font-size:17px;"><strong>г. Алматы, Улица Наурызбай батыра 28<br><br>Режим работы: с 9:00 до 19:00<br><br>Ориентир: напротив страховой компании КОММЕСК-ОМИР</strong></span></div>
  633. <div id="wb_indexText20" style="position:absolute;left:47px;top:98px;width:399px;height:54px;text-align:center;z-index:108;">
  634. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong>КОНТАКТНАЯ<br>ИНФОРМАЦИЯ</strong></span></div>
  635. <div id="wb_indexText28" style="position:absolute;left:586px;top:39px;width:358px;height:78px;text-align:center;z-index:109;">
  636. <span style="color:#000000;font-family:'trebuchet ms';font-size:20px;"><strong>ЗАКАЖИТЕ<br>БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ<br>И МЕНЕДЖЕР ВАМ ПЕРЕЗВОНИТ</strong></span></div>
  637. </div>
  638. </div>
  639. <div id="indexLayer14" style="position:absolute;text-align:center;left:0px;top:0px;width:100%;height:70px;z-index:141;position:fixed;min-width:1000px;">
  640. <div id="indexLayer14_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  641. <div id="wb_indexText1" style="position:absolute;left:63px;top:38px;width:322px;height:2px;z-index:110;text-align:left;">
  642. &nbsp;</div>
  643. <div id="wb_indexImage8" style="position:absolute;left:539px;top:9px;width:29px;height:29px;z-index:111;">
  644. <img src="images/viber.png" id="indexImage8" alt=""></div>
  645. <div id="wb_indexText30" style="position:absolute;left:665px;top:13px;width:107px;height:22px;z-index:112;text-align:left;">
  646. <span style="color:#008000;font-family:'trebuchet ms';font-size:16px;"><strong>WhatsApp</strong></span></div>
  647. <div id="wb_indexText31" style="position:absolute;left:571px;top:13px;width:107px;height:22px;z-index:113;text-align:left;">
  648. <span style="color:#8b008b;font-family:'trebuchet ms';font-size:16px;"><strong>Viber</strong></span></div>
  649. <div id="wb_indexText2" style="position:absolute;left:31px;top:3px;width:192px;height:42px;text-align:center;z-index:114;">
  650. <span style="color:#191970;font-family:'lucida sans unicode';font-size:35px;"><strong><u>Visa</u></strong></span><span style="color:#ffa500;font-family:'lucida sans unicode';font-size:35px;"><strong><u>PRO</u></strong></span></div>
  651. <div id="wb_indexText3" style="position:absolute;left:31px;top:45px;width:190px;height:18px;text-align:center;z-index:115;">
  652. <span style="color:#000000;font-family:'trebuchet ms';font-size:13px;">Центр визовой поддержки</span></div>
  653. <div id="wb_indexText34" style="position:absolute;left:480px;top:40px;width:270px;height:20px;text-align:right;z-index:116;">
  654. <span style="color:#000000;font-family:'trebuchet ms';font-size:15px;">г. Алматы, ул. Наурызбай батыра 28</span></div>
  655. <div id="wb_indexImage9" style="position:absolute;left:626px;top:3px;width:39px;height:39px;z-index:117;">
  656. <img src="images/ICOT-481191-4ND08LB3bn-1.png" id="indexImage9" alt=""></div>
  657. <div id="wb_indexText23" style="position:absolute;left:755px;top:13px;width:236px;height:54px;z-index:118;text-align:left;">
  658. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong><a href="tel:87714441923" class="style2">8 (771) 444-19-23</a><br></strong></span>
  659. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong><a href="tel:87273272798" class="style2">8 (727) 327-27-98</a><br></strong></span></div>
  660. </div>
  661. </div>
  662. <div id="indexLayer7" style="position:absolute;text-align:center;left:0px;top:4428px;width:100%;height:95px;z-index:142;min-width:1000px;">
  663. <div id="indexLayer7_Container" style="width:1000px;position:relative;margin-left:auto;margin-right:auto;text-align:left;">
  664. <div id="wb_indexText56" style="position:absolute;left:21px;top:57px;width:190px;height:18px;text-align:center;z-index:123;">
  665. <span style="color:#000000;font-family:'trebuchet ms';font-size:13px;">Центр визовой поддержки</span></div>
  666. <div id="wb_indexText57" style="position:absolute;left:21px;top:15px;width:192px;height:42px;text-align:center;z-index:124;">
  667. <span style="color:#191970;font-family:'lucida sans unicode';font-size:35px;"><strong><u>Visa</u></strong></span><span style="color:#ffa500;font-family:'lucida sans unicode';font-size:35px;"><strong><u>PRO</u></strong></span></div>
  668. <div id="wb_indexImage21" style="position:absolute;left:345px;top:15px;width:29px;height:29px;z-index:125;">
  669. <img src="images/viber.png" id="indexImage21" alt=""></div>
  670. <div id="wb_indexText58" style="position:absolute;left:377px;top:19px;width:107px;height:22px;z-index:126;text-align:left;">
  671. <span style="color:#8b008b;font-family:'trebuchet ms';font-size:16px;"><strong>Viber</strong></span></div>
  672. <div id="wb_indexImage22" style="position:absolute;left:432px;top:9px;width:39px;height:39px;z-index:127;">
  673. <img src="images/ICOT-481191-4ND08LB3bn-1.png" id="indexImage22" alt=""></div>
  674. <div id="wb_indexText59" style="position:absolute;left:471px;top:19px;width:107px;height:22px;z-index:128;text-align:left;">
  675. <span style="color:#008000;font-family:'trebuchet ms';font-size:16px;"><strong>WhatsApp</strong></span></div>
  676. <div id="wb_indexText32" style="position:absolute;left:343px;top:77px;width:315px;height:15px;text-align:center;z-index:129;">
  677. <span style="color:#000000;font-family:'trebuchet ms';font-size:9.3px;">VISAPRO.KZ 2015</span></div>
  678. <div id="wb_indexText10" style="position:absolute;left:524px;top:14px;width:420px;height:27px;text-align:right;z-index:130;">
  679. <span style="color:#000000;font-family:'trebuchet ms';font-size:21px;"><strong><a href="tel:87714441923" class="style2">8 (771) 444-19-23,</a> <a href="tel:87077140402" class="style2">8 707 714-04-02</a></strong></span></div>
  680. </div>
  681. </div>
  682.  
  683. <!-- Google Code for &#1047;&#1072;&#1103;&#1074;&#1082;&#1072; &#1042;&#1080;&#1079;&#1072;&#1087;&#1088;&#1086; Conversion Page
  684. In your html page, add the snippet and call
  685. goog_report_conversion when someone clicks on the
  686. chosen link or button. -->
  687. <script type="text/javascript">
  688. /* <![CDATA[ */
  689. goog_snippet_vars = function() {
  690. var w = window;
  691. w.google_conversion_id = 954146915;
  692. w.google_conversion_label = "XbAuCLvUhmIQ48D8xgM";
  693. w.google_remarketing_only = false;
  694. }
  695. // DO NOT CHANGE THE CODE BELOW.
  696. goog_report_conversion = function(url) {
  697. goog_snippet_vars();
  698. window.google_conversion_format = "3";
  699. window.google_is_call = true;
  700. var opt = new Object();
  701. opt.onload_callback = function() {
  702. if (typeof(url) != 'undefined') {
  703. window.location = url;
  704. }
  705. }
  706. var conv_handler = window['google_trackConversion'];
  707. if (typeof(conv_handler) == 'function') {
  708. conv_handler(opt);
  709. }
  710. }
  711. /* ]]> */
  712. </script>
  713. <script type="text/javascript"
  714. src="//www.googleadservices.com/pagead/conversion_async.js">
  715. </script>
  716.  
  717. <!-- BEGIN JIVOSITE CODE {literal} -->
  718. <script type='text/javascript'>
  719. (function(){ var widget_id = 'kFtc1XXhAS';
  720. var s = document.createElement('script'); s.type = 'text/javascript'; s.async = true; s.src = '//code.jivosite.com/script/widget/'+widget_id; var ss = document.getElementsByTagName('script')[0]; ss.parentNode.insertBefore(s, ss);})();</script>
  721. <!-- {/literal} END JIVOSITE CODE -->
  722. </body>
  723. </html>
Add Comment
Please, Sign In to add comment