﻿var theone;

function leaveSite(site){
  window.location = "../utilities/interstitial.aspx?redir="+escape(site);
}
function leaveSite2(site){
  window.location = "../../utilities/interstitial.aspx?redir="+escape(site);
}
function leaveSite3(site){
  //check if it is coming from the HCP section and the file is in a folder of professionals
  var pathname = location.pathname;
  var pathname_a = pathname.split("\/");
  pathname_length = pathname.length;
  for(var i=0; i<=pathname_length; i++){
      if(pathname_a[i] == "professionals" && (pathname_a[i+1] == "utilities" || pathname_a[i+1] == "errors")){
          window.location = "../../utilities/interstitial_nonus.aspx?redir="+escape(site);
          return;
      }
  }
  //otherwise
  window.location = "../utilities/interstitial_nonus.aspx?redir="+escape(site);
}
function leaveSite4(site){
  window.location = "utilities/interstitial_nonus.aspx?redir="+escape(site);
}
function selectAd(color, blackwhite){
      if(theone == 0){
          temp = document.getElementById(color).value;
          window.open("../includes/pdf/juvederm_dr_downloadable_color.pdf");
      }
      if(theone == 1){
          temp = document.getElementById(blackwhite).value;
          window.open("../includes/pdf/juvederm_dr_downloadables_bw.pdf");
      }
}
function setPDF(selectPDF){
     document.getElementById(selectPDF).checked = 'on';
     theone = "0";
}