If you accessed this page with a URL parameter "item", then the value of "item" would be written on the line above this.
Here is the code for the DIV that contains "item". It is hidden by default and is only "unhidden" if "item" has a value:
<div id="popUpID" style="display:none;"><%Response.Write(Request.QueryString("item"))%></div>
<% If Request.QueryString("item") <> "" Then%>
<script>document.getElementById('popUpID').style.display = 'block';</script>
<% End If %>
Hope this helps.