var arrayOpciones = new makeArrayOpciones (7,3);

var ruta_imagenes = "../images/";
var mnuWidth = 160;
var mnuHeight = 17;
var btnWidth = 18;
var textWidth = mnuWidth - btnWidth;

arrayOpciones [1] [1] =  "Régimen de Visas";
arrayOpciones [1] [2] =  "../visas.html";
arrayOpciones [1] [3] =  "main";

arrayOpciones [2] [1] =  "Visas ciudadanos argentinos";
arrayOpciones [2] [2] =  "../visas_argentinos/visas_schengen.html";
arrayOpciones [2] [3] =  "main";

arrayOpciones [3] [1] =  "Pasaporte Argentino";
arrayOpciones [3] [2] =  "../pasaporte/pasaporte.html";
arrayOpciones [3] [3] =  "main";

arrayOpciones [4] [1] =  "Trámites consulares";
arrayOpciones [4] [2] =  "../tramites/tramites.html";
arrayOpciones [4] [3] =  "main";

arrayOpciones [5] [1] =  "Funciones del Cónsul";
arrayOpciones [5] [2] =  "../consul/consul.html";
arrayOpciones [5] [3] =  "main";

arrayOpciones [6] [1] =  "Recomendaciones al viajero";
arrayOpciones [6] [2] =  "../viajero/viajero.html";
arrayOpciones [6] [3] =  "main";

arrayOpciones [7] [1] =  "Mercosur, Bolivia y Chile";
arrayOpciones [7] [2] =  "../cooperacion/cooperacion.html";
arrayOpciones [7] [3] =  "main";


function makeArrayOpciones (X,Y) {
	var Count;
	this.length = X;
	for (Count = 1; Count <= X; Count++) this [Count] = new makeArray (Y);
}

function makeArray (numOpciones) {
	var Count;
	this.length = numOpciones;
	for (Count = 1; Count <= numOpciones; Count++) this [Count] = 0;
	return (this);
}


function opciones() {
	document.write("<table width =" + mnuWidth + " cellpadding=0 cellspacing=0 border=0>");
	document.write("<tr><td bgcolor=#878787><img src=" + ruta_imagenes + "pixel.gif width=" + textWidth + " height=1 border=0></td>");
	document.write("<td bgcolor=#878787><img src=" + ruta_imagenes + "pixel.gif width=" + btnWidth + " height=1 border=0></td></tr>");
	for (Opcion = 1; Opcion <= arrayOpciones.length; Opcion ++) {
		document.write("<tr height=" + mnuHeight + ">");
		document.write("<td bgcolor=#EFEFEF style='border-left:#878787 solid 1px;padding-left:2px;'><div  class=opcion>");
		document.write("<a href=" + arrayOpciones [Opcion] [2] + " target=" + arrayOpciones [Opcion] [3] + ">");
		document.write(arrayOpciones [Opcion] [1]);
		document.write("</a></div></td>");
		document.write("<td bgcolor=#EFEFEF valign=top align=center style='border-right:#878787 solid 1px;'>");
		document.write("<a href=" + arrayOpciones [Opcion] [2] + " target=" + arrayOpciones [Opcion] [3] + ">");
		document.write("<img src=" + ruta_imagenes + "link_opciones.gif width=13 height=13 vspace=2 border=0>");
		document.write("</a></td>");
		document.write("</tr>");
		document.write("<tr><td colspan=2 bgcolor=#878787><img src=" + ruta_imagenes + "pixel.gif width=1 height=1 border=0></td>");
	}
	document.write("<tr><td colspan=2 align=right><img src=" + ruta_imagenes + "sombra100.gif width=100 height=20 border=0></td></tr>");
	document.write("</table>");
}



