<!-- This opens small windows used in the Events section 
<!-- So for most browsers (starting from 3rd versions) available: 
<!-- directories - show Links panel (yes, no) 
<!-- height - height in pixels (integer) 
<!-- location - show Location panel (yes, no) 
<!-- menubar - show standart program menu with items like File, Edit,... (yes, no) 
<!-- resizable - allow user to change window size (yes, no) 
<!-- scrollbars - show scrollbars if they are needed (yes, no) 
<!-- status - show status bar in the bottom (yes, no) 
<!-- toolbar - show commands panel with icons like Back, Refresh,... (yes, no) 
<!-- width - width in pixels (integer) 

<!-- There are also some browser specific properties implemented only in that browser. For example Internet Explorer has: 
<!-- fullscreen - opens new window in fullscreen mode (yes, no) or there is also a Netscape specific property: 
<!--  titlebar - show standart windows title bar, containing system window name (yes, no)

<!--This is how the code should be insterted:  <a onClick="MM_openBrWindow('WWW.WEBPAGE.COM','','toolbar=no,width=400,height=300,menubar=yes,scrollbars=yes,resizable=yes,status=yes,location=no,directories=no')" href="javascript:;">TEXT LINK</a>-->

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}