<!--
document.onkeydown=function(e){
	window.document.key_id=window.event ? event.keyCode : e.keyCode;
}

function form_check(f){
	if ('undefined' != typeof Validation && !Validation.ValidateForm(f.id)) {
		return false;
	}

	if(window.fc_under){
		window.fc_under.close();
	}
	if(typeof page_loading == "function")page_loading(1);
	return true;
}

var frm = document.getElementById('int_form');
if (null != frm && 'undefined' != typeof Validation) {
	Validation.AddValidators(frm.id,
		{
			fname: ['not null', 'Please provide your first name'],
			lname: ['not null', 'Please provide your last name'],
			phone1_p1: ['int minlength3 maxlength3', 'Please provide your daytime phone number\'s area code (first part)'],
			phone1_p2: ['int minlength3 maxlength3', 'Please provide your daytime phone number\'s prefix (second part)'],
			phone1_p3: ['int minlength4 maxlength4', 'Please provide your daytime phone number\'s line number (third part)'],
			email: ['email', 'Please provide a valid e-mail address'],
			zip: ['int minlength5 maxlength5', 'Please provide your 5-digit zip code']
		}
	);
}
//-->
