// JavaScript Document

//--------------------------------------------------------------
function crear(){
	window.location.href=(document.getElementById("Seleccion").value+".html");
	}
//-----------------------------------------------------------------

function hideShow (sIdItem) 
{	var oItem = document.getElementById(sIdItem);
	if (oItem) 
		 if(oItem.className=="invisible") {oItem.className="";}
			else {oItem.className="invisible";}
}

