mordred is correct there, but.... if you were tracking on an intranet you could get the location of the child window by polling it.
Try this, it was a proof of concept. Note that it will only show URLS that are on the same server. It updates every second, and has a counter in it, the thought was to time how long the user was at a particular page. It never got off the ground as we convinced them it was not a good idea to spy so blatantly
Code:
<form name=temp method="post" action="http://www.xmission.com/~tnelson/mirror.php" onSubmit="return validateForm(this)">
<a href="javascript:showSecondWindow()">New Window</a><br>
<input type="text" name="URL" size="50" value=""><br>
</form>
<script language="JavaScript">
function showSecondWindow(){
Swin=window.open("","SecondWindow","");
Swin.document.clear();
Swin.document.close();
setTimeout("checkPage()",1000)
}
myCount = 0;
function checkPage(){
myCount++;
document.temp.URL.value = myCount + "URL: " + Swin.location;
setTimeout("checkPage()",1000)
}
</script>
ShriekForth