Hi,
I found an easy script to do this:
<script type="text/javascript">
function breakout() {
<%
if ((String) request.getSession(false).getAttribute("sessionStatus") == null) {
%>
if (window.top != window.self) {
window.top.location="Login"
}
<%
}
%>
}
</script>
Place that script in your <head></head> tags, then call it like this:
<body onload="javascript:breakout();">
Thanks,
-Ashton.