function crearHeader() {
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" bgcolor="#C2BEBD">');
  document.write('<tr>');
  document.write('  <td align="center" valign="middle"> ');
  document.write('    <table width="700" height="400" border="0" cellspacing="0" cellpadding="0">');
  document.write('      <tr>');
  document.write('        <td align="center" valign="middle">');
	
}

function crearMenu() {
	
	document.write('<table width="150" border="0" cellpading="0" cellspacing="0">');
	document.write('<tr height="15"><td></td></tr>');
	document.write('<tr><td class="menus" valign="top">');

	// Codigo con el menu izquierda
	document.write('<img src="img/logo.gif"><br><br>');
	document.write('<a href="index.htm">Inicio</a><br>');
	//document.write('<a href="#">Quienes Somos?</a><br>');
	document.write('<a href="instalaciones.htm">Instalaciones</a><br>');
	document.write('<a href="fotografias.htm">Fotografías</a><br>');
	document.write('<a href="contacta.htm">Contacta</a><br>');

	document.write('</td></tr></table>');
}

function crearFooter() {
	document.write(' </td>');
  document.write('      </tr>');
  document.write('    </table>');
  document.write('  </td>');
  document.write('</tr>');
	document.write('</table>');
	
}

function crearCabecera() {
	crearHeader();
	document.write('<table width="700" height="400" border="0" cellspacing="0" cellpadding="0" background="img/Fondo1.jpg" style="border:1px solid black">');
  document.write('<tr>');
  document.write('  <td width="10"></td>');
  document.write('  <td valign="top">');
  crearMenu();
  document.write('  </td>');
  document.write('  <td width="1" >');
  document.write('  <td valign="top">');
}

function crearPiedePagina() {
	document.write('    </td>');
  document.write('  </tr>');
  document.write('</table>');
	crearFooter();
}
