<!-- Begin
function keuze() {
var uid = new Date(); // unieke ID als name van popup
var myindex=document.horizon.site.selectedIndex; // nummer van selectie
str = new String(document.horizon.site.options[myindex].value); // value van selectie
strarray = str.split(","); // split value bij de komma

if (strarray[1] == null) // controleer of er een waarde is
myindex = 0; // reset pulldown menu
else {
if (strarray[0] == "parent") // laad in parent window
parent.location.href = strarray[1];
else // laad in nieuw window
window.open(strarray[1], uid.getTime()); 
myindex = 0; // reset pulldown menu
}
}
// End -->


