I am looking for HTML/JavaScript code to open a new window with only a "close" option; users should not able to maximize or minimize the window. This is similar to the window which we get in Internet Explorer in Tools -> About Internet Explorer
.
Below is the code which I tried; however, I can increase/decrease the width of the window using mouse or by using the maximize/minimize buttons. How can I disable those options?
<SCRIPT>
<!--
window.open ('titlepage.html', 'newwindow', config='height=100,width=400, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, directories=no, status=no')
-->
</SCRIPT>