
// redirecciona desde el combo
function changeUrl() {
	var redirect;
	redirect = document.getElementById("opcionesEditar").value;
	document.location.href = redirect;
}

//cambia el nombre de la clase de un elemento
function switchClass(objeto, clase) {
	objeto.className = clase;
}



// windowClass
function openWindow(titulo, ancho, alto) {
	var win = new Window("win1", {className:"alphacube", url:titulo, width:ancho, height:alto, title:"Imagen", maximizable:false, minimizable:false, showEffectOptions:{duration:3}});
	win.showCenter();
	win.setDestroyOnClose();
}

// Muestra / Oculta divs
function switchContent(div){
	if (document.getElementById(div).style.display == ""){
		document.getElementById(div).style.display = "none";
		
	} else {
		document.getElementById(div).style.display = "";
	}
}

function openWindow(titulo, ancho, alto) {
	var win = new Window("win1", {className:"alphacube", url:titulo, width:ancho, height:alto, title:"Imagen", maximizable:false, minimizable:false, showEffectOptions:{duration:3}});
	win.showCenter();
	win.setDestroyOnClose();
}

