Buongiorno,
Volevo chiedere come posso mascherare oppure disabilitare il classico X (in alto a destra del browser) di un popup in PHP che permette la chiusura della finestra.
Indico il codice che apre il popup:
<script type="text/javascript">
<!--
function PopupCentrata() {
var w = 500;
var h = 150;
var l = Math.floor((screen.width-w)/2);
var t = Math.floor((screen.height-h)/2);
window.open("Popup/Include_popup_errore.php","","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
}
//-->
</script>
Grazie.