Hello,
I am using javascript openwin function to open a new window.
The window gets opened but it has some height and width.
I want the window to be opened in minimized form.
How I can acheive this?
This is my code
<script language="JavaScript">
<!--
function openWin( windowURL, windowName, windowFeatures ) {
return window.open( windowURL, windowName, windowFeatures ) ;
}
function ow()
{
openWin( 'bb.asp', 'Details', 'toolbar=0,location=0,directories=0,status=0,menuB ar=0,scrollBars=0,resizable=0' );
}
//-->
</script>
<a href="javascript:ow();">Click Here</a>
Thanks,
Rahul