//### RE-ESCALAR VENTANA #########################################
function tamañoVentana(ancho,alto){
	window.moveTo((screen.width-ancho)/2,(screen.height-alto)/2);
	window.resizeTo(ancho,alto);
	}
//### POP UP #####################################################
function abrirVentana(URL,ancho,alto){ 
	var centrarX = (screen.width-ancho)/2;
	var centrarY = (screen.height-alto)/2;
	var abrir = window.open(URL,"ventana1","width="+ancho+",height="+alto+",top="+centrarY+",left="+centrarX+",scrollbars=YES,resizable=NO,location=NO")
		if (abrir == undefined){ 
		alert("No se pudo abrir la ventana.\nAseguraté de no tener bloquear ventanas activado.");
	}
}
