How do I call a new window in javascript but in the bar above I don't want the user to be able to click the maximize button.
Here's my code:
<script language="JavaScript">
<!-- hide from non js-browsers
function showResults(){
var newWindow;
newWindow=open('results.asp','Result','scrollbars="no", resizable="no", menubar="no", width=580,height=400');
}
//-->
</script>
thx in advance,
V.
Here's my code:
<script language="JavaScript">
<!-- hide from non js-browsers
function showResults(){
var newWindow;
newWindow=open('results.asp','Result','scrollbars="no", resizable="no", menubar="no", width=580,height=400');
}
//-->
</script>
thx in advance,
V.