function checkform()
{
	if (document.download.u.value == "" ||  document.download.u.value.length < 3 ) {
		alert ( "Please verify your Kongregate user name" );
		return false;
	}else if (!document.download.agree.checked ) {
		alert ( "You must agree to the terms" );
		return false;
	}
	return true;
}
