<html>
<div class="droplink">
<a class="list" onClick="down()">Открыть список</a>
<ul id="dropdown" style="display:none">
<li class="item-1"><a href="#" target="_blank">Пункт 1</a></li>
<li class="item-2"><a href="#" target="_blank">Пункт 2</a></li>
<li class="item-3"><a href="#" target="_blank">Пункт 3</a></li>
<li class="item-4"><a href="#" target="_blank">Пункт 4</a></li>
<li class="item-5"><a href="#" target="_blank">Пункт 5</a></li>
</ul>
</div>
</html>
function down()
{
var a = document.getElementById('dropdown');
if ( a.style.display == 'none' )
a.style.display = 'block'
else
if ( a.style.display == 'block' )
a.style.display = 'none';
};