function Copyright()
{
    currentDate = new Date();
    if (document.all)
        theYear = currentDate.getYear();
    else if (document.layers || document.getElementById)
        theYear = currentDate.getYear() + 1900;

    document.writeln('Citation Technologies Inc. &copy; 1991-' + theYear + '. All Rights Reserved. 800-808-3372');
}

function InlineCopyrightYears()
{
    currentDate = new Date();
    if (document.all)
        theYear = currentDate.getYear();
    else if (document.layers || document.getElementById)
        theYear = currentDate.getYear() + 1900;

    document.writeln('1991-'+theYear);
}

function ValidateContactUs(eForm){
	if(eForm==null)
		return true;

	if(eForm.fullname.value.length==0){
		alert('Please fill in your name.');
		return false;						
	}

	if(eForm.email.value.length==0&&eForm.phone.value.length==0){
		alert('Please fill in your phone number or email address.');
		return false;						
	}

	if(eForm.comments.value.length==0){
		alert('Please fill in the comments box to give us an idea of how we can serve you.');
		return false;						
	}

	return true;
}