#!/bin/sh

# Copyright (c) 2007 Macrovision Europe Ltd. and/or Macrovision Corporation.

SCRIPTFILE=$0
SCRIPTPATH=`dirname "${SCRIPTFILE}"`
VERSION=`uname -r`
MAJOR_VERSION=`echo $VERSION | cut -f1 -d.`

if [ $MAJOR_VERSION -lt 8 ]; then
   "${SCRIPTPATH}"/IAAuthentication10_3
else
   "${SCRIPTPATH}"/IAAuthentication10_4
fi

