function introFancyBox(){
  var http = new XMLHttpRequest();
  http.open('HEAD', 'popup.html', false);
  http.send();
  if (http.status==200)
  {
    $.fancybox({
        'autoDimensions'  : false,
        'autoScale'       : false,
   			'width'           : 466,
        'height'          : 631,
        'transitionIn'    : 'none',
        'transitionOut'   : 'none',
        'type'            : 'iframe',
        'showCloseButton' : true,
        'titleShow'       : false,
        'padding'         : 0,
        'scrolling'       : 'no',
        'href'            : '/popup.html'
    });
  }
}

$(document).ready(function() {
  $('.popup_link').fancybox({
      'autoDimensions'  : false,
      'autoScale'       : false,
      'width'           : 500,
      'height'          : 500,
      'transitionIn'    : 'none',
      'transitionOut'   : 'none',
      'type'            : 'iframe',
      'showCloseButton' : true,
      'titleShow'       : false,
      'padding'         : 0,
      'scrolling'       : 'no'
  });
});

