DaysArr = new Object();
DaysArr1 = new Object();
Sessions = new Object();
Code = new Object();
DaysArr = new Array("Sunday, September 03, 2006");
DaysArr1 = new Array("Sunday, September 03, 2006");
Sessions["Sunday, September 03, 2006"] = new Array("All","Topic 1: Chemistry Of Amino Acids, Peptides And Peptidomimetics","Topic 2: New Approaches In Peptide/protein Synthesis","Topic 3: Peptide Nucleic Acids (PNA) - Synthesis And Applications","Topic 4: Glyco-, Lipo-, Phospho-Peptides","Topic 5: Peptides/Peptidomimetics Combinatorial Chemistry","Topic 6: Novel Endogenous Peptides","Topic 7: Peptide/peptidomimetics Therapeutics","Topic 8: Peptide-Protein Interactions","Topic 9: Nucleic Acids-Peptide Interactions","Topic 10: Peptide-Lipid Membrane Interactions","Topic 11: Protease Inhibitors And Substrates","Topic 12: Structure-Activity Relationship","Topic 13: Molecular Modelling Of Peptide/protein Structures","Topic 14: Peptide/protein Structural Studies And Folding","Topic 15: Role Of Peptides In Genomics, Proteomics And Peptidomics","Topic 16: Peptide Drug Discovery And Design","Topic 17: Peptide Pharmacology And Immunochemistry","Topic 18: Peptides As Diagnostic Tools","Topic 19: Analytical Techniques In Peptide Research","Topic 20: Peptide Cellular Uptake","Topic 21: Peptide-Based Biomaterials","Topic 22: Peptides In Nanotechnology");
Code["Sunday, September 03, 2006"] = new Array("A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V");
var DaysArrDashes = '------------------------'
var SessionsDashes = '------------------------'
initializeForm()


function initializeForm () 
{
document.jump.SessionDate.length = 0;
DaysArr1[DaysArr1.length] = DaysArrDashes
document.jump.SessionDate.options[0] = new Option(DaysArr1[0],DaysArr[0],1,1)
 for(count = 1; count < DaysArr1.length; count++) 
{
  document.jump.SessionDate.options[count] = new Option(DaysArr1[count],DaysArr[count]) 
 }
fillSessionID()
}


function fillSessionID()
{
document.jump.SessionID.length = 0;
 reg = new String(DaysArr[document.jump.SessionDate.selectedIndex])
 if (reg == DaysArrDashes) 
{
     document.jump.SessionDate.selectedIndex = document.jump.SessionDate.selectedIndex - 1
     reg = new String(DaysArr[document.jump.SessionDate.selectedIndex])
  }
 document.jump.SessionID.options[0] = new Option(Sessions[reg][0],Code[reg][0],1,1);
 for(count = 1; count < Sessions[reg].length; count++)
 document.jump.SessionID.options[count] = new Option(Sessions[reg][count],Code[reg][count]);
 document.jump.SessionID.options[document.jump.SessionID.options.length] = new Option(SessionsDashes);
}


function checkSessionID()
{
 if (document.jump.SessionID.options[document.jump.SessionID.selectedIndex].text == SessionsDashes)
 document.jump.SessionID.selectedIndex = document.jump.SessionID.selectedIndex - 1
}

