function openLink(URI)
{
	win = window.open(URI,"secWin","");
	win.focus;
}

function getMonth(monthNumber)
{
	funOutput = '';
	switch (monthNumber)
	{
	      case 0:	{ funOutput='Januari'; break }
	      case 1:  	{ funOutput='Februari'; break }
	      case 2:   { funOutput='March'; break }
	      case 3:   { funOutput='April'; break }
	      case 4:   { funOutput='May'; break }
	      case 5:   { funOutput='June'; break }
	      case 6:   { funOutput='July'; break }
	      case 7:   { funOutput='August'; break }
	      case 8:   { funOutput='September'; break }
	      case 9:  { funOutput='October'; break }
	      case 10:  { funOutput='November'; break }
	      case 11:  { funOutput='December'; break }
	}
	return funOutput
}

function getDay(dayNumber)
{
	funOutput = '';
	switch (dayNumber)
	{
	      case 0:	{ funOutput='Sunday'; break }
	      case 1: 	{ funOutput='Monday'; break }
	      case 2:  	{ funOutput='Tuesday'; break }
	      case 3:  	{ funOutput='Wednesday'; break }
	      case 4:  	{ funOutput='Thursday'; break }
	      case 5:  	{ funOutput='Friday'; break }
	      case 6:  	{ funOutput='Saturday'; break }
	}
	return funOutput;
}

