<%
' Declare our filename variable
Dim strFileName
' Get the filename to redirect to and place it in our variable
strFileName = Request.Form("filename")
' If it's empty send em back to the script
If strFileName = "" Then strFileName = "pulldown_nav.asp"
' Send them on their merry way
Response.Redirect strFileName
%>