

function cargar_inicial(url_content){
	if (url_content!=''){	
		//url_content = url_content.replace("%","&");
		cargar_get(url_content,'content_seccion');
	}
}


function cargar_caja_top(url_content){
	if (url_content!=''){	
		cargar_get(url_content,'content_destacado');
	}
}


function cargar_caja_bottom(url_content){
	if (url_content!=''){	
		cargar_get(url_content,'seccion_bottom');
	}
}



function cargar_content(url_content){
	if (url_content!=''){	
		cargar_get(url_content,'content');
	}
}







function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
  newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}


function desplegar(solappas){
var menu = document.getElementById(solappas);
    if(menu.className == "desplegado"){
      menu.className = "ocultar_desplegado";
    }
    else{
      menu.className = "desplegado";
    }
}
