getURL code ignores NO!

wxdqz

New Member
The following code is used in a getURL action off a button inside flash (4).

It will not obey the toolbar=no and all other feature items. Can someone take a look at this code and see what's amiss??

Thanks - xdef


javascript:NewWindow=window.open('grey.html','newWin','width=756,height=529,left=0,top=0,toolbar=No, menubar=no,directories=no,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus(); screen_height = window.screen.availHeight; screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-(756/2); top_point = parseInt(screen_height/2)-(529/2); setTimeout('NewWindow.moveTo(left_point,top_point)',100); void(0)
 
Back
Top