<!--

var category=new Array()
category[0]=new Option("Choose a trip ", "") //THIS LINE RESERVED TO CONTAIN COMBO TITLE
category[1]=new Option("Castle, homes, Gardens & Museums", "combo1")
category[2]=new Option("Celebrations", "combo2")
category[3]=new Option("Fine Dining", "combo3")
category[4]=new Option("Weekend Breaks", "combo7")
category[5]=new Option("Special Events", "combo8")
category[6]=new Option("Towns & Cities", "combo9")
category[7]=new Option("The Grand Tour", "combo10")

var combo1=new Array()
combo1[0]=new Option("Now choose a train","")
combo1[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/castles-homes-gardens.asp")
combo1[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/castles-homes-gardens.asp")
combo1[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo2=new Array()
combo2[0]=new Option("Now choose a train","")
combo2[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/celebrations.asp")
combo2[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/celebrations.asp")
combo2[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo3=new Array()
combo3[0]=new Option("Now choose a train","")
combo3[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/fine-dining.asp")
combo3[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/fine-dining.asp")
combo3[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo4=new Array()
combo4[0]=new Option("Now choose a train","")
combo4[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/weekend-breaks.asp")
combo4[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/weekend-breaks.asp")
combo4[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo5=new Array()
combo5[0]=new Option("Now choose a train","")
combo5[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/special-events.asp")
combo5[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/special-events.asp")
combo5[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo6=new Array()
combo6[0]=new Option("Now choose a train","")
combo6[1]=new Option("British Pullman (Departing from London Victoria)","http://www.traintripsdirect.com/orientexpress/towns-and-cities.asp")
combo6[2]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/towns-and-cities.asp")
combo6[3]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var combo7=new Array()
combo7[0]=new Option("Now choose a train","")
combo7[1]=new Option("Northern Belle (Departing from all other UK stations)","http://www.traintripsdirect.com/northernbelle/the-grand-tour.asp")
combo7[2]=new Option("BACK TO TRIPS","")   //THIS LINE RESERVED TO CONTAIN COMBO SUBTITLE

var curlevel=1
var cacheobj=document.dynamiccombo.stage2

function populate(x){
for (m=cacheobj.options.length-1;m>0;m--)
cacheobj.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobj.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobj.options[0].selected=true

}

function displaysub(){
if (curlevel==1){
populate(cacheobj.options[cacheobj.selectedIndex].value)
curlevel=2
}
else
gothere()
}


function gothere(){
if (curlevel==2){
if (cacheobj.selectedIndex==cacheobj.options.length-1){
curlevel=1
populate(category)
}
else
location=cacheobj.options[cacheobj.selectedIndex].value
}
}

//SHOW categories by default
populate(category)

//-->