// preload the arrow
if(document.images) {
  arrow = new Image(7,80); 
  arrow.src = 'js/checkform/img/cccc66_f5f5f5.gif';
}

//MES SETTINGS
var TOPPOS = 0; //Adjust the top pos if is not in place
var MSGTIMER = 20; //speed of fade
var MSGSPEED = 5; //?
var MSGOFFSET = 15; //Distance from input to the right
var MSGHIDE = 3; //?

//USER AREA ****************************************************************************
var artist_name_lenght_msg = 'Please enter at least 2 characters...';
var cat_key_msg = 'Please select an option...';

function validate(form) {
	if(form.artist_name.value == '' || form.artist_name.value.length < 2) {
		inlineMsg('artist_name', artist_name_lenght_msg);
		return false;
	}
	
	if(form.cat_key.value == '') {
		inlineMsg('cat_key', cat_key_msg);
		return false;
	}
	return true;
}
//**************************************************************************************
