function bookSearch(form)
{
	location.href=form.bookList[form.bookList.selectedIndex].value;
}
document.write("<FORM ENCTYPE='multipart/form-data' NAME='bookForm' >");
document.write('<SELECT NAME="bookList" onChange=bookSearch(this.form);>');
document.write('<OPTION>');
document.write('<OPTION VALUE="modern.htm">Modern India');
document.write('<OPTION VALUE="modern.htm">Women in India');
document.write('<OPTION VALUE="art.htm">Art & Architecture');
document.write('<OPTION VALUE="art.htm">Culture');
document.write('<OPTION VALUE="nature.htm">Flora & Fauna');
document.write('<OPTION VALUE="nature.htm">Nature');
document.write('<OPTION VALUE="ancient.htm">Ancient Text');
document.write('<OPTION VALUE="ancient.htm">Reflective Writing');
document.write('<OPTION VALUE="ancient.htm">History');
document.write('<OPTION VALUE="facts.htm">Encyclopedia');
document.write('<OPTION VALUE="facts.htm">Fact Files');
document.write('<OPTION VALUE="facts.htm">Ancient India');
document.write('<OPTION VALUE="guide.htm">Tourist Guides');
document.write('<OPTION VALUE="guide.htm">Atlases');
document.write('<OPTION VALUE="writing.htm">Philosophy');
document.write('<OPTION VALUE="writing.htm">Contemporary Writing');
document.write('<OPTION VALUE="delhi.htm">Delhi Related');
document.write('<OPTION VALUE="delhi.htm">Sexuality'); 
document.write('</SELECT>');
document.write('</FORM>');
