
Por ahí encontré este script pero no lo deja desabilitado, lo que hace es abrir un mensaje cuando uno intenta cerrar la ventana.
Se los dejo por si a alguien le interesa:
<html>
<head>
<script language="javascript">
function CloseClicked()
{
event.returnValue = false;
};
</script>
</head>
<body onbeforeunload="ConfirmClosClicked();">
<form id="frmTest" name="frmTest" method="post" runat="server">
</form>
</body>
</html>
Espero q puedan ayudarme.
Gracias!!!
Saludos!

Maru.-