//
function jumpBox(list)
{
 if(list.options[list.selectedIndex].value!='$')
 {location.href = list.options[list.selectedIndex].value}
}
function golist()
{
// -- add name of html file at the end of next line
var htm=new Array("our_teachings.htm","future_of_ahmadiyat.htm","god_nearness.htm","godly_man.htm","mirical.htm","perfect_knowledge.htm","philosophy_of_prayers.htm","purification.htm","religion.html","recognetion_of_prophets.htm");
// -- add Topic name at theeend of next line
var txt=new Array("Teachings of Promised Messiah","Future of Ahmadiyyat","Faculties for seeing God","Godly People","A Miracle of God","Perfect knowledge","The Philosophy of prayer","Purification","The Purpose of Religion","Recognition of Prophets");
var tlist=txt.length;
// document.write('<td bgcolor=\"#ffffff\" align=center valign=baseline>');
document.write('<form><font face=\"Verdana\" size=1>');
document.write('<select name=\"URL\" size=\"1\" style=\"background-color: #fffff0; font-family: Verdana; font-size: 8pt;\">');
document.write('<option value=\"$\">--- In this Section ---');
for(var i=0; i<tlist; i++)
{
document.write('<option value="'+htm[i]+'">'+txt[i]);
}
document.write('</select>');
document.write('<input type=\"BUTTON\" value=\"Go\" onClick=\"jumpBox(this.form.elements[0])\">');
document.write('</font></form>');
// document.write('</td>');
}
