/*
	Malkia

	a popomundo character by Sarah van der Vliet	
	site by Victor Zuydweg
*/

// visual label effects
errorBG = '#fff';
errorFW = 'bold';
rightBG = '#ccc';
rightFW = 'normal';

function validate(obj,fields){
	error = false;
	for(i=0;i<fields.length;i++){
		input = "f_" + fields[i];
		label = "l_" + fields[i];
		if(document.getElementById(input).value == ''){
			error = true;
			document.getElementById(input).style.background = errorBG;
			document.getElementById(label).style.fontWeight = errorFW;
		}
		else {
			document.getElementById(input).style.background = rightBG;
			document.getElementById(label).style.fontWeight = rightFW;
		}
	}

	if(!error) obj.submit();
	
}