function doSelect()
{ 
	 var index 
	 	selected = document.pulldownForm.pulldown.selectedIndex 
	  
	if(document.pulldownForm.pulldown.options[selected].value=="services"){ 
	  alert('Choose An Option');
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="hepatitis"){ 
	  location.href="/hepatitis/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="std"){ 
	  location.href="/stdaids/index.shtml" 
	 } 
	  else if(document.pulldownForm.pulldown.options[selected].value=="tb"){ 
		 location.href="/tuberculosis/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="lab"){ 
		 location.href="/laboratory/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="epidemiology"){ 
		 location.href="/epidemiology/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="about"){ 
		 location.href="/bccdc/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="infomngt"){ 
		location.href="/infomngt/index.shtml" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="dpic"){ 
		location.href="http://www.bccdc.org/dpic.shtml" 
	 } 
	 /* 
	 
	 ***taken out because of errors with IE. - OL.***
	 
	 else if(document.pulldownForm.pulldown.options[selected].value=="radiation"){ 
		location.href=""javascript:popContent('http://www.healthservices.gov.bc.ca/rpteb/','RadiationProtection');" 
	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="food"){ 
		location.href="javascript:popContent('http://www.healthservices.gov.bc.ca/protect/food.html','FoodProtection');" 
	 }
	 */
	 else if(document.pulldownForm.pulldown.options[selected].value=="radiation"){ 
	 		location.href="http://www.healthservices.gov.bc.ca/rpteb" 
	 	 } 
	 else if(document.pulldownForm.pulldown.options[selected].value=="food"){ 
	 		location.href="http://www.healthservices.gov.bc.ca/protect/food.html" 
	 } 
} 
	//end doSelect pulldown 

function popContent(file,name)
{
	window.open(file,name,'width=600,height=500,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');
}

function newContent(file)
{
	window.open(file,'newContent','width=600,height=500,directories=no,location=no,menubar=no,scrollbars=yes,status=yes,toolbar=yes,resizable=yes');
}