Change your links to something like this:
Code:
<li><a href="PopUps/swancreek.html" class="a" onclick="MM_openBrWindow('/PopUps/swancreek.html','PopUp','width=310,height=350'); return false">American Made Candles </a> </li>
That should do the trick for the code how you have it, but the function for the pop-up is kinda unnecessary.
You can just the make links like:
Code:
<a href="PopUps/swancreek.html" onclick="window.open('PopUps/swancreek.html','popup','width=310,height=350'); return false">American Made Candles </a> </li>
That would give the same result and less coding.
Last edited by TheSir; 02-09-2010 at 03:47 AM..
|