Ho usato questo JavaScript per aprire una popup non ridimensionabile, però FF mi permette di ridimensionarla comunque. C'è speranza?
Grazie, goat
<script language="Javascript">
function apriFinestra( __href, __width, __height )
{
var _xPos = (screen.width - __width) / 2;
var _yPos = (screen.height - __height) / 2;
var _conf = "width=" + __width + ",height=" + __height +
",left=" + _xPos + ",top=" + _yPos +
",screenX=" + _xPos + ",screenY=" + _yPos +
",scrollbars=no,status=no,location=no,toolbar= no,
";
return window.open( __href, "_blank", _conf );
}
//-->
</script>