function check(){
    var box = document.getElementById('cform').elements;

	for (var i=0; i< box.length; i++){
		if(box[i].value == ""){
			alert('Please complete all fields in this form!');
			box[i].focus();
			return false;
		}
		
	}
//	return false; 
}
