PDA

View Full Version : A little help please?


Kirie
06-22-2006, 10:26 PM
Okay, this may sound confusing....

On a fourm we need a code, one I cant think of how to make, or find. I was hoping one of you guys could help me....

We need a popup window, linking from a picture, in the window we need to put a affiliate code in there.

The problem is, I can't seem to remember how to make a popup window coming from a picture, and no I do not want a no right click sort of thing. I need something were people can copy the code in the window.


Can anyone help? :crying:

johnz
06-22-2006, 10:36 PM
<a href="#" onClick="MyWindow=window.open('popup.htm','MyWindow','toolbar=no,location=no,directories=no,status=no,menubar =no,scrollbars=no,resizable=no,width=675,height=500'); return false;"><img src="yourimage.jpg" alt="yourimage"></a>

you can set what you want to be visible in the popup window by changing the 'no' to 'yes'.

popup.htm would be that page that you want to open up in the new window
and yourimage.jpg is the image you want people to click to open the window.

Kirie
06-22-2006, 10:40 PM
Thank you so much!