listo problemilla resulto
pero como hago para verla con scrollbars=yes, resizable=yes
Código PHP:
<html>
<head>
<script language="JavaScript">
function abrir_vent(Url,NombreVentana,width,height) {
var left = screen.width / 2 - 940 / 2;
var top = screen.height / 2 - 640 / 2;
nuevaVentana=window.open(''+ Url + '',''+ NombreVentana + '','left=' + left + ',top=' + top);
nuevaVentana.focus();
}
</script>
</head>
<body>
<a href="javascript:abrir_vent('simulador_ventas.php','GuiaVital','940','640','');">Abrir ventana centrada</a>
</body>
</html>