You can obviously make a pop up window with HTML in a link, but with Javascript you get to specify the dimensions of what the window will be.
In the code below, is an example. Where it says 'LINK HERE' in red, you place the adress in which clicking the link will take you to. Also in red, is the dimensions.
You can of course customize this, so if the link would take you to a flash movie you would have to make sure the dimensions were the right size for the best quality.
In the code below, the bit in blue would be the text displayed. So when it is clicked on it will go to the link. (The code is in HTML)Code:javascript:newWin=void(window.open('http://LINK HERE','newWin','width=100,height=100,top=60,left=60'))"
Code:<A href='javascript:newWin=void(window.open('http://LINK HERE','newWin','width=100,height=100100,top=60,left=60'))">CLICK ME</A>





Reply With Quote

