Guest User

Untitled

a guest
Jul 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function popupHBJ(electionId, HID) {
  2.     var is_safari = false;
  3.     if ((navigator.userAgent.toLowerCase().split("safari").length + navigator.userAgent.toLowerCase().split("chrome").length) > 3) {
  4.         is_safari = false;
  5.     } else {
  6.         is_safari = true;
  7.     }
  8.     var is_msie = navigator.userAgent.toLowerCase().indexOf("msie") > -1;
  9.     var is_firefox = navigator.userAgent.indexOf("Firefox") > -1;
  10.     var is_opera = navigator.userAgent.toLowerCase().indexOf("opera") > -1;
  11.     if (is_msie || is_firefox || is_opera || is_safari) {
  12.         var url = '/electioninfo/candidate_detail_basicInfo.xhtml?electionId=' + electionId + '&huboId=' + HID;
  13.         window.open(url, 'HBM', "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=1020, height=760, left=0, top=0");
  14.         return;
  15.     } else {
  16.         alert("죄송합니다. 현재 후보자정보공개현황 팝업페이지는 마이크로 소프트 인터넷 익스플로러나 파이어폭스, 사파리, 오페라에서  확인하실수 있습니다.");
  17.         return;
  18.     }
  19. }
Add Comment
Please, Sign In to add comment