

<!-- 
                        
function openNewWindow( link_URL, width, height, scrollbars )
{
openNewWindow( link_URL, width, height, scrollbars, 'no', 'no', 'no', 'no', 'no' );
}

                        
function openNewWindow( link_URL, width, height, scrollbars, resizable, menu, tool,
locationbar, statusbar )
{
windowAttributes ='width=' + width + ',height=' + height + ',scrollbars=' +
scrollbars + ',resizable=' + resizable + ',menubar=' + menu + ',toolbar=' + tool + ',location='
+ locationbar + ',status=' + statusbar;
window.open( link_URL, 'plain', windowAttributes);
}

// -->

