Web link

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to have a web link from one web site, that would cause the
linked site to open in a new window, but not give the user any options to see
the web address easily or search from there. The only option would be to
close the window and go back to the main site. I understand that experts
could easily determine the linked web address, but for most people, I'd like
it not displayed so it looks almost like an extension of the original site.
 
Dan said:
Use JimCo's free program called Spawn. You can configure the popup
window to have no address bar, no scroll bars, window size, etc.

http://www.jimcosoftware.com/addins.aspx

Yes, I have done this on my site.
Go to Picture Album then click on any of the five buttons under Fotopic.net

This opens a "gallery" on fotopic.net.

It doesn't show the address or have many (if any) other options, and you
have to close the window to get back to my site,
BUT it does show the title in the title bar. I don't think you can avoid
this.

I originally used spawnJimcoPopup, but I found this just as easy:
<input type="button" value="Trevor's Family Gallery"
onclick="opfotopic();"/>

function opfotopic() {
var url = 'http://....' // the correct address is added into here
var options = 'toolbar=no,location=no,directories=no,status=no,menubar=no'
+ ',resizable=yes,scrollbars=yes'
window.open(url,'',options)
}
 
Back
Top