<!-- This is for displaying Matruvani issues according to your choice of year and the month. archives@amritapuri.org

function DispMatruvani() 
{
	var matruvaniVolume;
	var matruvaniDir;
	if((document.menu.volume.selectedIndex == 0) || (document.menu.month.selectedIndex ==0))
	{
		alert("Invalid Selection!");
	}
	else
	{
		//Volume prefix to be changed here
		matruvaniDir = "vol-" + document.menu.volume.options[document.menu.volume.selectedIndex].value;
		matruvaniVolume="/matruvani/" + matruvaniDir + "/" + document.menu.month.options[document.menu.month.selectedIndex].value + document.menu.volume.options[document.menu.volume.selectedIndex].value + ".php";
		document.location.href = matruvaniVolume;
	}

}

function writeMonth()
{
	var bufferMonthCombo = '<select name="month" >' +
				'<option value="defaul">Month</option>' +
				'<option value="jan">January</option>' +
				'<option value="feb">February</option>' +
				'<option value="mar">March</option>' +
				'<option value="apr">April</option>' +
				'<option value="may">May</option>' +
				'<option value="jun">June</option>' +
				'<option value="jul">July</option>' +
				'<option value="aug">Auguest</option>' +
				'<option value="sep">September</option>' +
				'<option value="oct">October</option>' +
				'<option value="nov">November</option>' +
				'<option value="dec">December</option>' +
				'</select>'
	document.write(bufferMonthCombo);
}

function writeYear()
{
	//NOTE: Remember Y2k Problem.
	//	We expect value attributte to be changed precisely mentioning the year clearly.
	var bufferYearCombo = '<select name="volume" >' +
				'<option value="defaul">Year</option>' + 
				'<option value="02">2002</option>' +
				'<option value="01">2001</option>' +
				'<option value="00">2000</option>' +
				'<option value="99">1999</option>' +
				'<option value="98">1998</option>' +
				'<option value="92">1992</option>' +
				'</select>'
	document.write(bufferYearCombo);
}
// stop hididng -->