<!-- 

/*
******************************************************************************************
 Copyright (C) Bhagavan Sri Skanda, 2001-2002. All rights reserved. 			
 This page and its code contents may not be produced, reproduced or published in whole or  
 in part without the prior written consent of the webmaster of 				
 Skandagurunatha.org (webmaster@skandagurunatha.org)					
******************************************************************************************
*/

/*This function opens the corresponding page from the select-drop down menu

  Important: this function requires that the form name (where the select menu is positioned in) be
             called 'index' and the select menu be named 'selectForm' else this program will not work!
*/

function openPage()
{
  if (document.index.selectForm.options[document.index.selectForm.selectedIndex].value == "")
  {
    //do nothing! 
  }
  else
  {
    //go to the location specified in the 'value' of the 'select menu'
    window.location = document.index.selectForm.options[document.index.selectForm.selectedIndex].value;
  }        
}

//-->