A
AAaron123
I have the javascript function:
function openWindow(name, path, w, h){
OpenWindowX=window.open(
path,name,'scrollbars=1,resizable=1,width='+w+',height='+h);
}
and call it like this.
<a href="JavaScriptpenWindow('abc','Images/ABC.jpg',763,571)" >qqq</a>
The top of the window contains a title that I can control.
But under that is and address box that doesn't make much sense to the
viewer. Why would he want to know where the image is stored.
I can't get rid of that.
Do you know how?
Or can I place some other text in there other than the address?
Thanks in advance
function openWindow(name, path, w, h){
OpenWindowX=window.open(
path,name,'scrollbars=1,resizable=1,width='+w+',height='+h);
}
and call it like this.
<a href="JavaScriptpenWindow('abc','Images/ABC.jpg',763,571)" >qqq</a>
The top of the window contains a title that I can control.
But under that is and address box that doesn't make much sense to the
viewer. Why would he want to know where the image is stored.
I can't get rid of that.
Do you know how?
Or can I place some other text in there other than the address?
Thanks in advance