|
well what you could do is creat a function that handles the windows inquires.
Like so
-----
<script language="javascript">
function popup(url,width,height){
window.open(url,"def",width,height,location=0,menubar=0,resizeable=0,scrollbars="auto",status=0,titl ebar=0,toolbar=0)
}
</script>
--------
then you take your area and call the funtion
<area shape="rect" coords="251,262,355,279" href="javascript:popup('Whatever.html','150','160')" target="">
------
This should work(but never does hehehehe j/k)
|