I've run into a little snag while trying to get this to work. I can't seem to manage multiple open.window commands on the same page- I'm doing a products section for a page, where every question mark next to the product would open up a small window with a brief description of the said service. I went out thinking that Javascript would be the ideal solution to this with it's open.window command...but I'm no master of Javascript, but I'm working towards that goal, heh. Still, so far I've only managed to get one link working.
Problem is, I'd need at least ten more, on the same page. How should I go about doing this?
Code:
<Script Language="JavaScript">
function load() {
var load = window.open('index.html','','scrollbars=yes,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no,menubar=no');
}
</script>
And here's the image link that calls up the new window:
Code:
<a href="javascript:load('')"><img src="info.png" width="23" height="23" /></a>
Any and all help is much appreciated.