function displayMenu(_levelId){
showMain();
}

function hideLevel( _levelId ) {
	var thisLevel = document.getElementById( _levelId );
	thisLevel.style.display = "none";
	}

function showLevel( _levelId ) {
	var thisLevel = document.getElementById( _levelId );
	//if ( thisLevel.style.display == "none") {
		thisLevel.style.display = "block";
		//}
	//else {
	//	hideLevel( _levelId);
		//}
	}

function showMainNoLogo(){
document.writeln("  <table width=\"600\"><!--- Main Menu --->");
document.writeln("		 <tr>");
document.writeln("            <td align=\"middle\">");
document.writeln("               <div align=\"center\">");
document.writeln("                  <strong>::</strong> <A href=\"sails.htm\"> SAILS</A>&nbsp; <strong>");
document.writeln("                  ::</strong> <A href=\"pix.htm\">PIX</A>&nbsp;<strong>");
document.writeln("                  ::</strong> <A href=\"design.htm\"> DESIGN</A>");
document.writeln("                  <strong>::</strong>&nbsp;<A href=\"news.htm\">NEWS</A><strong>");
document.writeln("                  ::</strong> <A href=\"contact.htm\">CONTACT</A> <strong>::</strong>");
document.writeln("               </div>");
document.writeln("            </td>");
document.writeln("            </tr></table>");
}
	
function showMain(){
document.writeln("  <table width=\"600\"><!--- Main Menu --->");
document.writeln("		 <tr>");
//document.writeln("            <td align=\"left\" >");
//document.writeln("               <A href=\"about.htm\"><IMG height=17 alt=\"\" src= \"images/logoloftx100.jpg\" width=100 align=left border=    0></A>&nbsp;");
//document.writeln("            </td>");
document.writeln("            <td align=\"middle\">");
document.writeln("               <div align=\"center\">");
document.writeln("                  <strong>::</strong> <A href=\"index.htm\"> HOME</A>&nbsp; <strong>");
document.writeln("                  <strong>::</strong> <A href=\"textil.htm\"> TEXTIL</A>&nbsp; <strong>");
document.writeln("                  ::</strong> <A href=\"artesania.htm\">ARTESANIA</A>&nbsp;<strong>");
document.writeln("                  ::</strong> <A href=\"materiales.htm\"> MATERIALES</A>");
document.writeln("                  <strong>::</strong>&nbsp;<A href=\"quienes.htm\">QUIENES SOMOS</A><strong>");
document.writeln("                  ::</strong> <A href=\"contactos.htm\">CONTACTOS</A> <strong>::</strong>");
document.writeln("                  <strong>::</strong> <A href=\"index.htm\"> HOME</A>&nbsp; <strong>");
document.writeln("               </div>");
document.writeln("            </td>");
//document.writeln("            <td valign=\"center\">");
//document.writeln("              <A href=\"about.htm\"><IMG height=17 alt=\"\" src=\"images/logoloftx100.jpg\" width= 100 align=right border=0></A></td>");
document.writeln("            </tr></table>");
document.writeln("       <table width=\"600\")>");
}

function closeMain(){
document.writeln("  </td></tr></table>");
}