|
Okay i saw where i made the error sorry.
------
<script language="javascript">
function popup(url,width,height){
window.open(url,"def","width="+width+",height="+height)
}
</script>
----------
the you call the function in the area(like before - but no errors this time hehe)
--------
<area shape="rect" coords="251,262,355,279" href="javascript:popup('Whatever.html','550','360')">
------
This should work hehe
|