/* ----------------------------------
redirection à la section login client 
---------------------------------- */
function loginClient(clientCode,lang) {
  var url = "http://extranet.filmlaurentides.ca/clients/clientLogin.aspx?accessCd=" + clientCode + "&lang=" + lang
  var w = screen.width * 0.95
  var h = screen.height * 0.95
  var l = 0
  var t = 0
  var features

  features = 'height='+h
  features += ',width='+w
  features += ',left='+l
  features += ',top='+t
  features += ',resizable=1'
  features += ',status=1'
  features += ',scrollbars=1'
  features += ',toolbar=1'
  features += ',location=no'


  var appWin = window.open(url, 'appWin', features)
  appWin.focus()

}