
function Salutation()
{
	var currTime = new Date();
	var currHour = currTime.getHours();
	if (currHour >= 18)
	{
		document.write('Good Evening');
	}
	else if (currHour >=12)
	{
		document.write('Good Afternoon');
	}
	else
	{
		document.write('Good Morning');
	}
	document.write(' and welcome to the Janitor Programmer Website.');
}

function WriteToPage(args)
{
	for (var x = 0; x < arguments.length; x++)
	{
		document.write(arguments[x]);
	}
}