html/javascript help

From: HunterG23 (hctiger1_at_hotmail.com)
Date: 11/26/04


Date: 26 Nov 2004 11:44:45 -0800

Hello,

I know html isn't really programming, but I still need some help. I
created a simple website with frames(top frame(title), side
frame(menu), main frame(main page)). I have a a citrix application
that launches in a new window but the button that actually launches
the applications is in the top frame. When a user logs out of the
citrix application, the top frame changes to the citrix log in page,
instead of the title page. I'm not sure how to make the citrix
application stay in the new window when log out is clicked. I think
it has something to do with the javascript in the asp page.

<HEAD>
    <SCRIPT Language="JavaScript" type="text/javascript">
    <!--
    if (window.opener && !window.opener.closed) {
        window.opener.location = "<%=href%>";
        window.close();
    } else {
        top.location = "<%=href%>";
    }
    //-->
    </SCRIPT>
</HEAD>

I'm not sure what <%=href%> is, but I think that it is what is
pointing to my top frame, instead of the new window. Does this make
any sense? I would greatly appreciate any help with this issue!!!

Thanks in advance.


Quantcast