There is my problem. I am forced to use a Redirect script because there is no way to tell firefox where to open the window (top and left). The problem is that I have to reconnect each time when I use the script even though I have already connected before. This is what the script looks like:
<!DOCTYPE html><html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>XXXXX</title>
<script type="text/javascript">
function move_and_resize(){
mywindow=window.open(monURL,"mywindow",
"menubar=0,titlebar=1,scrollbars=1,toolbar=0,
location=0,status=0,left=50,top=50,width=1950,height=1000");
self.close();
}
setTimeout("move_and_resize()",50);
</script>
</html>
Thanks for your help.