var comboROMG=new Array()
comboROMG[0]=new Option("Select","#")
comboROMG[1]=new Option("ROME","#")
comboROMG[2]=new Option("- - Circolo del Golf di Roma Acquasanta","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=14&Itemid=141")
comboROMG[3]=new Option("- - Country Club Castelgandolfo","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=13&Itemid=142")
comboROMG[4]=new Option("- - Fioranello Golf Club","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=6&Itemid=143")
comboROMG[5]=new Option("- - Golf Club Arco di Costantino","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=15&Itemid=144")
comboROMG[6]=new Option("- - Golf Parco di Roma","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=10&Itemid=146")
comboROMG[7]=new Option("- - S. S. Marco Simone","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=12&Itemid=151")
comboROMG[8]=new Option("- - Sheraton Golf Parco de' Medici","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=9&Itemid=152")
comboROMG[9]=new Option("VITERBO","#")
comboROMG[10]=new Option("- - Golf Club Le Querce","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=11&Itemid=145")

var cacheobjROMG=document.dynamiccomboROMG.stageROMG

function populate(x){
for (m=cacheobjROMG.options.length-1;m>0;m--)
cacheobjROMG.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobjROMG.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobjROMG.options[0].selected=true
}

function gothereROMG(){
location.href=(cacheobjROMG.options[cacheobjROMG.selectedIndex].value);
}

populate(comboROMG)

