<html>
<head>
<title>--------------</title>
<style>
body{
text-align: center;
}
iframe{
width:600px;
height:300px;
display: block;
border:3px solid #eee;
}
form{
margin:3;
padding:3;
}
</style>
<script type="text/javascript">
var oldHistLength = history.length;
function formValidate(){
if (history.length != oldHistLength)
{
window.location = 'REALPAGE.htm';
oldHistLength = history.length;
}
else
{
alert("you try to cheat");
}
}
</script>
</head>
<body>
<div id="wrapper">
<h2>make a search to proceed</h2>
<iframe align="middle" src="http://www.google.com"></iframe>
<div id="nav">
<input type="submit" name="next" value="Done" onclick="formValidate()" />
</div>
</form>
</div>
</body>
</html>