function isArchiveIdValid(form)
{
	var archiveId=parseInt(form.goToArchiveId.value);
	if (isNaN(archiveId) || archiveId<1)
	{
		alert ("Archive ID must be a number greater than zero.");
		return false;
	}
	return true;
}