Forum Moderators: open
<script type="text/javascript">
parent.location.href='sesionEX.htm';
</script>
And if you really want to wait the 3 seconds before redirecting, then you could do something like this;
<script type="text/javascript">
setTimeout("parent.location.href='sesionEX.htm'",3000);
</script>