<% Option Explicit %> <% Dim thePath, showMessage ' Set showMessage to 'NO' to hide the message and automatically redirect the user to the new download URL ' Set showMessage to 'YES' to display the message and provide a link to the new download URL with the message showMessage = "NO" thePath = Request.Querystring("path") If showMessage = "YES" Then Response.Write " " Response.Write "

Please update your bookmarks.

" Response.Write "

You are using an outdated link. To access the requested file please follow this link:" If Request.Querystring("ref") = "kc" Then Response.Write "
" & "http://www.opentext.com/2/global/sso_download?path=" & thePath & "&ref=kc" Else Response.Write "
" & "http://www.opentext.com/2/global/sso_download?path=" & thePath & "" End If Response.Write "

" Response.Write "

We apologize for the inconvenience.

" Response.Write "" Else If Request.Querystring("ref") = "kc" Then Response.Redirect("http://www.opentext.com/2/global/sso_download?path=" & thePath & "&ref=kc") Else Response.Redirect("http://www.opentext.com/2/global/sso_download?path=" & thePath) End If End If %>