Que tal, tengo el siguiente codigo, en IE si me deshabilita el maximizar pero en chrome no lo hace alguien me puede ayudar??
function PopupWindow()
{
var userWidth = screen.availWidth;
var userHeight = screen.availHeight;
leftPos = (userWidth - 900) / 2,
topPos = (userHeight - 600) / 2;
settings = 'modal,scrollBars=no,resizable=no,toolbar=no,menub ar=no,location=no,directories=no,left='+ leftPos +',top=' + topPos +',width=900, height=600';
window.open("Registro.aspx", "popup", settings);
}