Thanks in advance for your help!
Can you help?
First of all avoid pop-ups like the plague!! - explore DHTML layers instead.
When that fails use:
//— Begin Script —
var newwindow = ‘’;
function popitup(url) {
if (!newwindow.closed && newwindow.location) {
newwindow.location.href = url;
}
else {
newwindow=window.open(url,’name’,’height=200,width=150’);
if (!newwindow.opener) newwindow.opener = self;
}
if (window.focus) {newwindow.focus()}
return false;
}
//— End Script —