| > Is this just my bad script? I tried single quotes and
> double quotes but I can't get the latest build of HTTrack
> to parse the URL 'giftfair.htm' in my popup window.
I tried with 3.30-RC18-2 and it seems to work fine. Which
build release did you try?
function giftfair(){
var w=400;
var h=120;
var LeftPosition = (screen.width) ? (screen.width-
w)/2 : 0;
var TopPosition = (screen.height) ? (screen.height-
h)/2 : 0;
window.open('../../external.html?link=http://linux.localnet.loc/~roche/giftfair.htm','giftfai
r','height='+h+',width='+w+',top='+
TopPosition+',left='+LeftPosition+',scrollbars=no');
}
| |