stdjmax
09-14-2005, 01:51 AM
I would a new window IE without scrollbars and size 50X50
from here i find
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=50,height=50,scrollbars=no);
return false;
}
//-->
</SCRIPT>
and you call by
<A HREF="activation.htm" onClick="return popup(this, 'notes')">
Activation</font></A>
But it show me scrollbars in a window of 50x50.
How i get rid of them?
from here i find
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=50,height=50,scrollbars=no);
return false;
}
//-->
</SCRIPT>
and you call by
<A HREF="activation.htm" onClick="return popup(this, 'notes')">
Activation</font></A>
But it show me scrollbars in a window of 50x50.
How i get rid of them?