//select menu
var target = "blank"; 

function poplink(){ 
var url = document.euroland.select.options[document.euroland.select.selectedIndex].value; 
if(url != "" ){ 
if(target == 'top'){ 
top.location.href = url; 
} 
else if(target == 'blank'){ 
window.open(url, 'window_name'); 
} 
else if(target != ""){ 
eval('parent.' + target + '.location.href = url'); 
} 
else{ 
location.href = url; 
} 

} 

} 