// Amc Gestion Personalizada
// Script para Abrir ventanas emergentes

// Parametros de Entada:  Direccion,ancho,alto
function finestra(url,h,w) {
	izq = (screen.width/2)-(w/2)
	der = (screen.height/2)-(h/2)
	formato = 'srollbar=no,menubar=no,locationbar=no,statusbar=no,toolbar=no,height=' + h + ',width=' + w + ',left='+izq+',Top='+der
	window.open(url,'ventana',formato)
}

// Parametros de Entada:  Direccion,titulo pagina,ancho,alto
function Abrir(pagina,nom,ancho,alto){
	izq = (screen.width/2)-(ancho/2)
	der = (screen.height/2)-(alto/2)
	ventana = window.open(pagina,nom,"width=" + ancho + ",height=" + alto + ",menubar=no,scrollbars=no,status=no,left="+izq+",Top="+der)
	ventana.resizeTo(ancho,alto);
}
function Abrir_New(pagina,nom,ancho,alto){
	izq = (screen.width/2)-(ancho/2)
	der = (screen.height/2)-(alto/2)
	ventana = window.open(pagina,nom,"width=" + ancho + ",height=" + alto + ",menubar=no,scrollbars=yes,status=no,left="+izq+",Top="+der)
	ventana.resizeTo(ancho,alto);
}
function Abrir_Ven(pagina,nom,ancho,alto){
	izq = (screen.width/2)-(ancho/2)
	der = (screen.height/2)-(alto/2)
	ventana = window.open(pagina,nom,"width=" + ancho + ",height=" + alto + ",menubar=yes,scrollbars=yes,status=yes,location=yes,toolbar=yes,resizable=yes,left="+izq+",Top="+der)
	//ventana.resizeTo(ancho,alto);
}
function Abrir_New_Res(pagina,nom,ancho,alto){
	izq = (screen.width/2)-(ancho/2)
	der = (screen.height/2)-(alto/2)
	ventana = window.open(pagina,nom,"width=" + ancho + ",height=" + alto + ",menubar=no,scrollbars=yes,resizable=yes,status=no,left="+izq+",Top="+der)
	ventana.resizeTo(ancho,alto);
}