/* ------------------------------
CUSTOME GOLIVE FUNCTIONS
------------------------------- */
function checkIfNumber(myValue,myTarget)
{
	if(isNaN(myValue))
	{
		alert('Invalid Year format. Please enter in the following format 1976');
		myTarget.focus = true;;
	}
}

