<%@ page contentType="text/html; charset=iso-8859-1" language="java" %>
<%
/*Start link exchange code
The Instant Links system will check this page once a week. Your website will be removed from the network if you alter this code. 

If you want to change the view of your directory page you simply need to change the value of variable customize to 1 and after that you are able to add any tags and other code information above and under this code. ATENTION: Please be sure all tags like html, head, title, body and so on are added to this page if value of variable customize = 1 */

int customize=0;
String queryString= request.getParameter("catid");
int iqueryString;
if (queryString == null)
{
	iqueryString=0;
}
else
{
	iqueryString= Integer.parseInt(queryString);
}
String requestingPage="http://www.instantlinks.info/directory.php?customize="+customize+"&catid="+iqueryString; 
String thisLine;
java.net.URL url = new java.net.URL(requestingPage);
java.io.BufferedReader dis = new java.io.BufferedReader(new java.io.InputStreamReader(url.openStream()));
while ((thisLine = dis.readLine()) != null) 
{  
	out.println(thisLine);
}
%>
