Para hacer una lista de enlaces corta os voy a dejar dos códigos .
Estos los tenéis que poner en un gadget HTML-JAVASCRIPT
Este primero sale con el botón IR.
<form name="formulario" method="post" action="">
<label>NOMBRE QUE QUERAIS QUE APAREZCA </label>
<select name="destinos">
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
</select><input onclick="location.href=formulario.destinos.value;" type="button" value="IR" name="button">
</form>
Este segundo sin el botón IR.
<form name="formulario1" method="post" action="">
<label>NOMBRE QUE QUERAIS QUE APAREZCA </label>
<select name="destinos1" onchange="location.href=formulario1.destinos1.value;">
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
<option value=" URL DE SITIO">NOMBRE DE SITIO</option>
</select>
</form>
Teméis que poner nombre de, u la url del sitio y el nombre de ese sitio.