hi y'all,
i'm new to javascript, but i know a little bit....
i've got a browser default.php which, on loading, opens a FullScreen window with the following script:
Code:
<SCRIPT LANGUAGE="JavaScript">
<!--
var strOpt='FullScreen';
Authorer = window.open("LOGIN.php","Authorer",strOpt);
-->
</SCRIPT>
So LOGIN.php opens in a new FullScreen browser with no toolbars, title bars or anything.
I want to have an HRef which changes the focus from the LOGIN.php browser back to the default.php browser without actually opening or closing any windows just changing the focus.
can anyone help??