page 1 link to page2 link to page3
This page contain iframe which links to rfi_reg_form_del.asp.
rfi_reg_form_del.asp has the perl script load the other page.

<HTML>
<HEAD>
<TITLE>RFP Creative Services Form</TITLE>

<!-- #include virtual = "/rfr/inc/head_int.inc" -->
<body marginheight="0" marginwidth="0" topmargin="0" leftmargin="0" width="100%" bgcolor="#ffffff">
<!-- #include virtual = "/rfr/inc/head_int2.inc" -->
RFP Creative Services Form
<!-- #include virtual = "/rfr/inc/head_int3.inc" -->
<!-- #include virtual = "/rfr/inc/head_int4.inc" -->
<iframe src="http://stage.ibi.com/eipsales/collateral/rfi_reg_form_del.asp"
width="100%" height="2000"
align="bottom" frameborder="0" marginwidth="0" marginheight="0" scrolling="no">

</iframe>
</body>
</html>

---------------------------------------------------
This is the rfi_reg_form_del.asp page
and load the esp index page.

<html>
<head>
<title></title>
</head>
This is asp/PerlScript load the whole esp index.html page to this page.

<%
use LWP::Simple;
my $URL = "http://esp.ibi.com/index.html";
$stuff = get($URL);
$Response->Write($stuff);
%>

</html>