View Single Post
Old 07-01-2002, 02:57 AM   PM User | #2
ACJavascript
Regular Coder

 
Join Date: Jun 2002
Location: FL, USA
Posts: 734
Thanks: 0
Thanked 0 Times in 0 Posts
ACJavascript is on a distinguished road
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)
__________________
CYWebmaster.com - See why we dot com!!
ACJavascripts.com - Cut & Paste Javascripts!
SimplyProgram.com - Personal Blog
ACJavascript is offline   Reply With Quote