I have an image map with a link that opens a new window through an onClick
action:
<area shape="rect" coords="69,46,164,69"
onClick="MM_openBrWindow('../virtual/tour.html','360','scrollbars=yes,width=
800,height=600,left=0,top=0')" target="_blank" alt="Virtual Tour"
title="Virtual Tour">
It works, but I couldn't yet make the mouse cursor change on rollover as
with any other link. I tried using href in three different ways,
<area shape="rect" coords="69,46,164,69"
href="javascript

nClick='MM_openBrWindow('../virtual/tour.html','360','scro
llbars=yes,width=800,height=600,left=0,top=0')'" target="_blank"
alt="Virtual Tour" title="Virtual Tour">
<area shape="rect" coords="69,46,164,69" href=""
onClick="MM_openBrWindow('../virtual/tour.html','360','scrollbars=yes,width=
800,height=600,left=0,top=0')" target="_blank" alt="Virtual Tour"
title="Virtual Tour">
<area shape="rect" coords="69,46,164,69" href="#"
onClick="MM_openBrWindow('../virtual/tour.html','360','scrollbars=yes,width=
800,height=600,left=0,top=0')" target="_blank" alt="Virtual Tour"
title="Virtual Tour">
but none works. I would appreciate any suggestions. Thanks.