Sir,
I am using following code to open new window
<script type="text/javascript">
function popup(url) {
var width = 1200;
var height = 900;
var left = (screen.width - width) / 2;
var top = (screen.height - height) / 2;
var params = 'width=' + width + ', height=' + height;
params += ', top=' + top + ', left=' + left;
params += ', toolbar=no';
params += ', menubar=no';
params += ', resizable=yes';
params += ', directories=no';
params += ', scrollbars=no';
params += ', status=no';
params += ', location=no';
params += ', navigationtoolbar=no';
newwin = window.open(url, 'd', params);
if (window.focus) {
newwin.focus()
}
return false;
}
</script>
But it not hide the navigation toolbar.
i want hide the minimize and maximize button AND only show the close button
How to get it?