Okay, i've been in the prcess of making a guide for a site called GTAGuides.com, that is currently beeing built, i'm mkaing a guide for the owner, i've been having problems with a certain part of it though, when I click a image on the map I created the pop-up I tried to use doesn't work, i'm currently using this. I want it to when you click a image the HTML document I created comes up.
Code:
Header
<script type="text/javascript">
<!--
function newWindow(url, w, h) {
var params
params = 'width=' + w + ', height=' + h + ', scrollbars';
myNewWindow = window.open(url, "", params);
}
// -->
</script>
<a href="javascript:newWindow('filename.htm', 325, 375);">Link</a>
Anyhelp? If you understoof that at all.