no se si esto es posible en JS o debe ser aplicándole un Estilo Css de cualquier forma que sea espero me ayuden .
Gracias .
Funcion que abre la ventana(Ventana que originalmente es creada como cualquier pagina).
Código HTML:
function Abrir_Ventana(url)
{
var w = 700, // width of your block
h = 400, // height of your block
l = (screen.width - w)/2, // block left positionss
t = (screen.height -h)/2; //block top position
window.open(url,'','height=' + h + ',width=' + w + ',top=' + t + ',left=' + l);
}
http://imageshack.us/photo/my-images/515/ventanamodal.png/



