//function writeDropDownBox ()
//{
var oTags =""
//oTags = oTags+"<form name='alllinks'>"
oTags = oTags+"<select class='quick-select' name='sitelinks' onChange='top.location=this.options[this.selectedIndex].value; this.selectedIndex=0'>"
oTags = oTags+"<option value='' selected>Quick Locator ...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/forum/'>Discussion Forum...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/blog/'>DreamBlogs...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/western/index.html'>Western Ghats...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/southern/'>Southern ...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/etc/'>Himalaya ...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/gallery/'>Galleria ...</option>"
oTags = oTags+"<option value=''>~~~~~~~~~~~~~~~~~~~~</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/etc/allclimbs.html'>Climbing Places</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/etc/alltreks.html'>Trekking Places</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/etc/allwaterfalls.html'>List of Waterfalls</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/etc/parks.html'>National Parks</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/imagemap.html'>Image Map-Karnataka</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/resources.html'>Resources</option>"
oTags = oTags+"<option value=''>~~~~~~~~~~~~~~~~~~~~</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/dreams/'>Dreams ...</option>"
oTags = oTags+"<option value=''>~~~~~~~~~~~~~~~~~~~~</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/'>Our Mission ...</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/'>Mission Statement</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/pollutionwatch.html'>Pollution Watch</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/people.html'>the Team</option>"
oTags = oTags+"<option value=''>~~~~~~~~~~~~~~~~~~~~</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/index.html'>home</option>"
oTags = oTags+"<option value='http://www.dreamroutes.org/about/sitemap.html'>Site Map</option>"
oTags = oTags+"</select>"; //</form>";
document.write(oTags);
//}
function go() {
	if (sitelinks.options[sitelinks.selectedIndex].value != 'none') {
		location = sitelinks.options[sitelinks.selectedIndex].value
	} 
}
