// JavaScript Document
function abrirVentana(ruta, width, height) {
	var left = parseInt(screen.availWidth / 2 - width / 2);
	var top = parseInt(screen.availHeight / 2 - height / 2);
	window.open(ruta,"flash",'width='+width+',height='+height+',location=no,status=no,left='+left+',screenX='+left+',top='+top+',screenY='+top+'');
}
