//		F U N C I O N E S

function Atras()
{
	history.back(-1);
}

function Continuar()
{
 	window.location = "listado.asp"
}

function BorrarCambios(opcion)
{
 	if (confirm("Se van a borrar los cambios realizados ¿Deseas continuar?")) {
		if (opcion == "alta")
			document.forms[0].reset();
		else
			window.location = "formulario.asp";
	}
}

function Eliminar(texto,archivos)
{
	if (archivos.toLowerCase() == "true")
		txtAlert = "ATENCION. Al eliminar "+texto+", también se eliminarán TODOS LOS ARCHIVOS ASOCIADOS ¿Deseas continuar?";
	else
		txtAlert = "Se va a ELIMINAR "+texto+". ¿Deseas continuar?";
	if (confirm(txtAlert)) {
		window.location = "delete.asp";
	}
}

function abrirVentana(url, nombreVentana, ancho, alto, scroll, maxi)
{
	LeftPosition = (screen.width)?(screen.width-ancho)/2:0;
	TopPosition = (screen.height)?(screen.height-alto)/2:0;
	settings = "width="+ancho+",height="+alto+",top="+TopPosition+",left="+LeftPosition+",scrollbars="+scroll+",resizable="+maxi;
	window.open(url,nombreVentana,settings);
}


