var comboNAPG=new Array()
comboNAPG[0]=new Option("Select","#")
comboNAPG[1]=new Option("NAPLES","#")
comboNAPG[2]=new Option("- - Volturno Golf","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=59&Itemid=193")


var cacheobjNAPG=document.dynamiccomboNAPG.stageNAPG

function populate(x){
for (m=cacheobjNAPG.options.length-1;m>0;m--)
cacheobjNAPG.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobjNAPG.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobjNAPG.options[0].selected=true
}

function gothereNAPG(){
location.href=(cacheobjNAPG.options[cacheobjNAPG.selectedIndex].value);
}

populate(comboNAPG)

