For some reason, that wouldnt work for me, so I used,
Code:
<script type="text/javascript">
function loadIframe(iframeName, url) {
if ( window.frames[iframeName] ) {
window.frames[iframeName].location = url;
return false;
}
else return true;
}
then
Code:
<A HREF="url" TITLE="title" onclick="return loadIframe('frame', this.href)"><IMG ALT="alt" SRC="img.url" WIDTH="" BORDER="" HEIGHT=""></A>
Thanks anyways though.