/* Ricardo Rivera Berrío : rriveraberrio@hotmail.com - www.nolineal.com */
/* Website Tatiana Montoya */
/* Script generado por Carolina Rivera */

// En este script
// 1. llama la funcion que permite el rollover
// 2. se abre la tabla general de todas las paginas html y
// 3. se pinta el menu superior

// la programación que sigue pretende separar los botones para inglés y español
if (Idioma == "Esp")
{
gif = ".gif"
ingles = ""
}

if (Idioma == "Ing")
{
ingles = "_i"
gif = (ingles+".gif")
}

// ahora abre la tabla general
document.writeln("<div align='center'>") 
document.writeln("<table width='' border='0' cellspacing='0' cellpadding='0' bgcolor='#798A84'>")
document.writeln("	<!-- parte superior -->")
document.writeln("		<tr>")
document.writeln("			<td colspan='3'>")

//finalmente arma el menu superior
document.writeln("				<table border='0' cellspacing='0' cellpadding='0'>")
document.writeln("					<tr>")
document.writeln("						<td bgcolor='#D7DCDA'><img src='../imagenes/vacio1x1.gif' width='415' height='58' border='0'></td>")
document.writeln("						<td>")
document.writeln("							<table border='0' cellspacing='0' cellpadding='0'>")
document.writeln("								<tr>")
document.writeln("									<td colspan='2' bgcolor='#D7DCDA'><img src='../imagenes/vacio1x1.gif' width='1' height='39' border='0'></td>")
document.writeln("								</tr>")
document.writeln("								<tr>")
document.writeln("									<td bgcolor='#D7DCDA'>")
document.writeln("										<table border='0' cellspacing='0' cellpadding='0'>")
document.writeln("											<tr>")

// se deshabilito el menu de obra
// document.writeln("<td><img src='../imagenes/linea_negra.jpg'></td>")
// document.writeln("<td><a href='01.html' onMouseOver=imgOn('img1') onMouseOut=imgOff('img1')><img name='img1' src='../imagenes/botobra.gif' width='43' height='13' border='0'></a></td>")

document.writeln("												<td><img src='../imagenes/vacio1x1.gif' width='1' height='13' border='0''></td>")
document.writeln("												<td><img src='../imagenes/linea_negra.jpg'></td>")
document.writeln("												<td><a href='0101"+ingles+".html' onMouseOver=imgOn('img2') onMouseOut=imgOff('img2')><img name='img2' src='../imagenes/botpintura"+gif+"' width='52' height='13' border='0'></a></td>")
document.writeln("												<td><img src='../imagenes/linea_negra.jpg'></td>")
document.writeln("												<td><a href='0102"+ingles+".html' onMouseOver=imgOn('img3') onMouseOut=imgOff('img3')><img name='img3' src='../imagenes/botescultura"+gif+"' width='66' height='13' border='0'></a></td>")
document.writeln("												<td><img src='../imagenes/linea_negra.jpg'></td>")
document.writeln("												<td><a href='0103"+ingles+".html' onMouseOver=imgOn('img4') onMouseOut=imgOff('img4')><img name='img4' src='../imagenes/botgrafica"+gif+"' width='51' height='13' border='0'></a></td>")
document.writeln("												<td><img src='../imagenes/linea_negra.jpg'><img src='../imagenes/vacio1x1.gif' width='63' height='13' border='0''></td>")
// document.writeln("<td><img src='../imagenes/vacio1x1.gif' width='54' height='13' border='0''></td>")
document.writeln("											</tr>")
document.writeln("										</table>")
document.writeln("									</td>")
document.writeln("									<td bgcolor='#D6DCD8'><img src='../imagenes/vacio1x1.gif' width='61' height='13' border='0'></td>")
document.writeln("								</tr>")
document.writeln("								<tr>")
document.writeln("									<td colspan='2' bgcolor='#D6DCD8'><img src='../imagenes/vacio1x1.gif' width='1' height='6' border='0'></td>")
document.writeln("								</tr>")
document.writeln("							</table>")
document.writeln("						</td>")
document.writeln("					</tr>")
document.writeln("				</table>")
document.writeln("			</td>")
document.writeln("		</tr>")

