// JavaScript Document

  function direct(a,b){

  if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)))
  {
    window.location.replace(a)
  }
  else
  {
    window.location.replace(b)
  }
  
  }
