<!--

function validateForm()
{
    valid = true;

    if ( document.getElementById('verify').value != "c1n3m4" )
    {
        alert ( "CINEMA EXPERIENCE\n\nPlease note: you must enter the correct code in order to submit this form.\nPlease try again." );
		document.getElementById('verify').value = "";
		document.getElementById('verify').focus();
		valid = false;
    }

    return valid;
}

//-->