I'm working on this site http://focashairsalon.com/test1.html and on the gallery button I want a pop-window that is smaller then the main page so they are not taken off the page and can close when done. How would I do that? thanks
Answer:
Hi,
you can do it via simple javascript code,
the menu button code:
<div><a href='javascript:new_window();'>Gallery</a></div>
The javascript code:
<script>
function new_window(){
window.open('http://www.pageresource.com/jscript/jex5.htm','mywindow','width=400,height=200')
}
</script>
http://www.pageresource.com/jscript/jwinopen.htm
Regards
Dmitry
f-source.com