| 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. Thanks.
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
('giftfair.htm','giftfair','height='+h+',width='+w+',top='+
TopPosition+',left='+LeftPosition+',scrollbars=no');
}
| |