
//goTo("home");

function goTo(inSeccion){
		
		try{
			console.debug(inSeccion);
		}catch(err){}
		switch(inSeccion){
			
			case "sobre":
				inSeccion = "sobre_introduccion";
			break;
		
			case "mineria":
				inSeccion = "mineria_intro";
			break;

		}
		
		var url = inSeccion+".html";

		document.getElementById("myFrame").innerHTML = "<iframe name='myIFrame' id='myIFrame' width='100%' scrolling='no'  height='100%' src='" + url + "'frameborder='0' ></iframe>";

		
	}



	var section = document.location+"";
	section = section.substring(section.lastIndexOf("/")+1,section.lastIndexOf("."));
	

	var bp = document.location;
	var so = new SWFObject("cabecera.swf", "cabeceraswf", "800", "420", "8", "#FFFFFF");
		so.useExpressInstall('expressinstall.swf');
		so.setAttribute('xiRedirectUrl', bp);
		so.addParam("scale", "noscale");
		so.addVariable("section",section);
		so.write("cabecera");
