var matriz = new Array ();

matriz [0] = new Array (2);
matriz [0][0] = 1;
matriz [0][1] = "http://student.upeace.org";
matriz [0][2] = "Students Intranet";

/*
matriz [1] = new Array (2);
matriz [1][0] = 1;
matriz [1][1] = "http://alumni.upeace.org";
matriz [1][2] = "Alumni Web Site";
*/
matriz [1] = new Array (2);
matriz [1][0] = 0;
matriz [1][1] = "/portals/potential.cfm";
matriz [1][2] = "Potential Students";

matriz [2] = new Array (2);
matriz [2][0] = 0;
matriz [2][1] = "/about/";
matriz [2][2] = "Media & General Public";

matriz [3] = new Array (2);
matriz [3][0] = 0;
matriz [3][1] = "/about/newsflash/";
matriz [3][2] = "UPEACE Newsflash";

matriz [4] = new Array (2);
matriz [4][0] = 1;
matriz [4][1] = "http://www.monitor.upeace.org";
matriz [4][2] = "Peace & Conflict Monitor";

matriz [5] = new Array (2);
matriz [5][0] = 0;
matriz [5][1] = "/video/upeace.wmv";
matriz [5][2] = "UPEACE Video";

matriz [6] = new Array (2);
matriz [6][0] = 1;
matriz [6][1] = "/PDF/Visiting%20Faculty%20Manual.pdf";
matriz [6][2] = "Visiting Faculty Manual";

matriz [7] = new Array (2);
matriz [7][0] = 0;
matriz [7][1] = "/jobs/";
matriz [7][2] = "Job Opportunities";

matriz [8] = new Array (2);
matriz [8][0] = 0;
matriz [8][1] = "/alumni/";
matriz [8][2] = "Student & Alumni Profiles";

matriz [9] = new Array (2);
matriz [9][0] = 0;
matriz [9][1] = "/podcast/";
matriz [9][2] = "UPEACE Podcast";

matriz [10] = new Array (2);
matriz [10][0] = 1;
matriz [10][1] = "http://collaboration.upeace.org";
matriz [10][2] = "UPEACE Special Scholarship Fund";

matriz [11] = new Array (2);
matriz [11][0] = 0;
matriz [11][1] = "/pamphlet.cfm";
matriz [11][2] = "UPEACE General Pamphlet";

matriz [13] = new Array (2);
matriz [13][0] = 1;
matriz [13][1] = "http://www.open.upeace.org";
matriz [13][2] = "UPEACE OPEN Network";


matriz [14] = new Array (2);
matriz [14][0] = 1;
matriz [14][1] = "http://www.africa.upeace.org/documents/GlossaryV2.pdf";
matriz [14][2] = "Peace & Conflict Glossary";

matriz [15] = new Array (2);
matriz [15][0] = 1;
matriz [15][1] = "http://www.review.upeace.org";
matriz [15][2] = "Peace & Conflict Review";

matriz [16] = new Array (2);
matriz [16][0] = 0;
matriz [16][1] = "/career";
matriz [16][2] = "Career Development Center";

matriz [17] = new Array (2);
matriz [17][0] = 0;
matriz [17][1] = "/thingstodo";
matriz [17][2] = "Things to do at UPEACE";

matriz [18] = new Array (2);
matriz [18][0] = 0;
matriz [18][1] = "/cyc";
matriz [18][2] = "CyC";

function alimenta_rapido ()
{  var cosa = document.forms [0].rapidos;
   var opcion;
   for (i = 0; i < matriz.length; i ++)
			{  opcion = document.createElement("OPTION");
      opcion.text = matriz [i][2];
      opcion.value = i;
      cosa.options.add(opcion);
			}
}

function cambio_rapido (valor)
{  if (matriz [valor][0] == 0)   
   {  document.location.href= matriz [valor][1];
			}
			else
			{  var newWindow = window.open (matriz [valor][1], "_blank");
						if (newWindow) 
						{ if (newWindow.focus) 
						  { newWindow.focus(); 
								  return false;
								} 
						}
			}			
}

function abre_ventana (sitio,alto,ancho)
{ var tira = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=" + ancho +",height=" + alto; 
		window.open (sitio,"adicional",tira);  
}

function abre_ventanaExt (sitio,alto,ancho,modo)
{ var tira = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable="+modo+",width=" + ancho +",height=" + alto; 
		window.open (sitio,"adicional",tira);  
}