// put even numbers for selection

document.write('<table border="0" cellspacing="0" cellpadding="0"><tr><form name=sitelist><td class="frmselect"><select name="nominees"  onChange="javascript:getvalues()" style="width:240px;" class="frmselect">');

// 2008
if (dd_sel == 1)
	document.write('<option value="action.html" selected>Best Action</option>');
else
	document.write('<option value="action.html">Best Action</option>');

// 2007
if (dd_sel == 2)
	document.write('<option value="actor.html" selected>Best Actor - Male</option>');
else
	document.write('<option value="actor.html">Best Actor - Male</option>');

// 2006
if (dd_sel == 3)
	document.write('<option value="actress.html" selected>Best Actor - Female</option>');
else
	document.write('<option value="actress.html">Best Actor - Female</option>');
	
// 2005
if (dd_sel == 4)
	document.write('<option value="animationfilm.html" selected>Best Animation Film</option>');
else
	document.write('<option value="animationfilm.html">Best Animation Film</option>');

// 2003
if (dd_sel == 5)
	document.write('<option value="artdirection.html" selected>Best Art Direction</option>');
else
	document.write('<option value="artdirection.html">Best Art Direction</option>');

// 2002
if (dd_sel == 6)
	document.write('<option value="backgroundmusic.html" selected>Best Background Music</option>');
else
	document.write('<option value="backgroundmusic.html">Best Background Music</option>');

// 1999
if (dd_sel == 7)
	document.write('<option value="child_artiste.html" selected>Best Child Artiste</option>');
else
	document.write('<option value="child_artiste.html">Best Child Artiste</option>');

// 1997
if (dd_sel == 8)
	document.write('<option value="choreography.html" selected>Best Choreography</option>');
else
	document.write('<option value="choreography.html">Best Choreography</option>');

// 1996
if (dd_sel == 9)
	document.write('<option value="cinematography.html" selected>Best Cinematography</option>');
else
	document.write('<option value="cinematography.html">Best Cinematography</option>');

// 1995
if (dd_sel == 10)
	document.write('<option value="comicrole.html" selected>Best Actor in a Comic Role</option>');
else
	document.write('<option value="comicrole.html">Best Actor in a Comic Role</option>');

// 1994
if (dd_sel == 11)
	document.write('<option value="debut_director.html" selected>Most Promising Debut Director</option>');
else
	document.write('<option value="debut_director.html">Most Promising Debut Director</option>');

if (dd_sel == 12)
	document.write('<option value="dialogue.html" selected>Best Dialogue</option>');
else
	document.write('<option value="dialogue.html">Best Dialogue</option>');	
	
	
if (dd_sel == 13)
	document.write('<option value="director.html" selected>Best Director</option>');
else
	document.write('<option value="director.html">Best Director</option>');	
	
if (dd_sel == 14)
	document.write('<option value="editing.html" selected>Best Editing</option>');
else
	document.write('<option value="editing.html">Best Editing</option>');
	
if (dd_sel == 15)
	document.write('<option value="film.html" selected>Best Film</option>');
else
	document.write('<option value="film.html">Best Film</option>');	
	
if (dd_sel == 16)
	document.write('<option value="ifie.html" selected>Best Indian Film in English</option>');
else
	document.write('<option value="ifie.html">Best Indian Film in English</option>');
	
if (dd_sel == 17)
	document.write('<option value="lyrics.html" selected>Best Lyrics</option>');
else
	document.write('<option value="lyrics.html">Best Lyrics</option>');		
	
if (dd_sel == 18)
	document.write('<option value="music.html" selected>Best Music</option>');
else
	document.write('<option value="music.html">Best Music</option>');
	
if (dd_sel == 19)
	document.write('<option value="negativerole.html" selected>Best Actor in a Negative Role </option>');
else
	document.write('<option value="negativerole.html">Best Actor in a Negative Role </option>');
	
if (dd_sel == 20)
	document.write('<option value="newcomer_female.html" selected>Promising Newcomer - Female</option>');
else
	document.write('<option value="newcomer_female.html">Promising Newcomer - Female</option>');
	
if (dd_sel == 21)
	document.write('<option value="newcomer_male.html" selected>Promising Newcomer - Male</option>');
else
	document.write('<option value="newcomer_male.html">Promising Newcomer - Male</option>');
	
if (dd_sel == 22)
	document.write('<option value="screenplay.html" selected>Best Screenplay</option>');
else
	document.write('<option value="screenplay.html">Best Screenplay</option>');
	
if (dd_sel == 23)
	document.write('<option value="singer-male.html" selected>Best Singer - Male</option>');
else
	document.write('<option value="singer-male.html">Best Singer - Male</option>');
	
if (dd_sel == 24)
	document.write('<option value="singer_female.html" selected>Best Singer - Female</option>');
else
	document.write('<option value="singer_female.html">Best Singer - Female</option>');
	
if (dd_sel == 25)
	document.write('<option value="sound.html" selected>Best Sound</option>');
else
	document.write('<option value="sound.html">Best Sound</option>');
	
if (dd_sel == 26)
	document.write('<option value="spleffects.html" selected>Best Special Effects</option>');
else
	document.write('<option value="spleffects.html">Best Special Effects</option>');
	
if (dd_sel == 27)
	document.write('<option value="sr_female.html" selected>Best Actor in a Supporting Role - Female</option>');
else
	document.write('<option value="sr_female.html">Best Actor in a Supporting Role - Female</option>');
	
if (dd_sel == 28)
	document.write('<option value="sr_male.html" selected>BestActor in a Supporting Role - Male</option>');
else
	document.write('<option value="sr_male.html">Best Actor in a Supporting Role - Male</option>');
	
if (dd_sel == 29)
	document.write('<option value="story.html" selected>Best Story</option>');
else
	document.write('<option value="story.html">Best Story</option>');
													
document.write('</select></td></form></tr></table>');
function getvalues()
{
catchit=document.sitelist.nominees.selectedIndex
stored=document.sitelist.nominees.options[catchit].value


if (stored != "none")
	{
		url=stored
		document.location.href=url
	}
}

