/* these variables are used by the validation script.
	when validating, each field's value is examined.
	if it fails validation, the fields border and 
	background color are changed to error_bdr and 
	error_bg. If it passes, the border and bg color
	are changed to default. Default color should 
	match the css sheet for input fields.
----------------------------------------------------------- */
var error_bdr		= 'solid 1px #FF0000';
var error_bg		= '#FFDDDD';
var default_bdr		= 'solid 1px #99AABB';
var default_bg		= '#FFFFFF';
