Hi
I know this is a silly little thing and if my brain wanted to work correctly right now I’m sure I’d know the answer but unfortunatelty it’s not co-operating.
I’m working on an Intranet site that when the user clicks on a link containing this code
lwidth = 903;
lheight = 680;
LeftPosition=(screen.width)?(screen.width-lwidth)/2:100;
TopPosition=(screen.height)?(screen.height-lheight)/5:100;
window.open(“index.asp?Size=”+screen.width, ‘SalespopUpWin’, “toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no,width=”+lwidth+",height="+lheight+",left="+LeftPosition+", top="+TopPosition+",screenX="+TopPosition+",screenY="+LeftPosition);
The window should pop open at the right size, which it does. I mean this works fine and I’m very happy with it but the problem then happens if I click on an other link on my Desktop. The link doesn’t open in the IE that launched the window, instead it opens in the sized window. Does anyone know why it opens in the sized window rather than the launcher IE?
RabBell.