function showJobApplyForm()
{
	fc = document.getElementById("form-container");
	fc.style.display = 'block';
	btn = document.getElementById("btnShowJobApplyForm");
	btn.style.display = 'none';
	return true;
}

function getRandomNumber()
{
	return 4; //chosen by fair dice roll, guaranteed to be random.
}
