var comboVCEG=new Array()
comboVCEG[0]=new Option("Select","#")
comboVCEG[1]=new Option("VENICE","#")
comboVCEG[2]=new Option("- - Circolo Golf Venezia","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=31&Itemid=156")
comboVCEG[3]=new Option("- - Golf Club Ca' della Nave","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=32&Itemid=157")
comboVCEG[4]=new Option("PADUA","#")
comboVCEG[5]=new Option("- - Golf Club Frassanelle","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=27&Itemid=159")
comboVCEG[6]=new Option("- - Golf Club Montecchia","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=29&Itemid=160")
comboVCEG[7]=new Option("- - Golf Club Padova","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=28&Itemid=161")
comboVCEG[8]=new Option("- - Golf Club Terme di Galzignano","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=30&Itemid=162")
comboVCEG[9]=new Option("TREVISO","#")
comboVCEG[10]=new Option("- - Golf Club Condulmer","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=26&Itemid=158")

var cacheobjVCEG=document.dynamiccomboVCEG.stageVCEG

function populate(x){
for (m=cacheobjVCEG.options.length-1;m>0;m--)
cacheobjVCEG.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobjVCEG.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobjVCEG.options[0].selected=true
}

function gothereVCEG(){
location.href=(cacheobjVCEG.options[cacheobjVCEG.selectedIndex].value);
}

populate(comboVCEG)

