<!-- 
function validateForm()
{
    valid = true;

    if ( document.getElementById('verify').value != "hcssat" )
    {
        alert ( "Validation code is wrong. Please try again" );
		document.getElementById('verify').value = "";
		document.getElementById('verify').focus();
		valid = false;
    }

    return valid;
}
 -->
