function runsearch(){
	if(	document.main['s_nr'].value==0 &&
		document.main['s_status'].value==0 &&
		document.main['start_day'].value==0 &&
		document.main['end_day'].value==0)
	{
		gopage('list','orders','');	
	} else {
		document.main.searchit.value='yes';
		document.main.submit();	
	}
}





function checkForm(itemz){
	fields=itemz.split(",");
	error='';
	i=0;
	j=fields.length;

	while(i<j){
		nname=fields[i];
		if(document.order[nname].value==''){
			error +=nname+" \n";
		}
		if(nname=='aantal'){
			if(document.order[nname].value>10000){
				error += "Bij een aantal van 10000 of groter, zou u contact op willen nemen met Drukkerij van Esch op info@drukkerijvanesch.nl of bel naar 0418-654561."+"\n";
			}
		}
		//alert(nname+" "+document.order[nname].value);
		i++;
	}
	if(error==''){ 
		document.order.submit();
	} else {
		alert("Missende velden:\n\n"+error);
	}
}
	
	
function gopage(action,group,serial){
	document.main.serial.value=serial;
	document.main.action.value=action;
	document.main.group.value=group;
	document.main.sortfield.value='';
	document.main.limitfield1.value='';
	document.main.limitvalue1.value='';
	document.main.limitfield2.value='';
	document.main.limitvalue2.value='';
	document.main.limitfield3.value='';
	document.main.limitvalue3.value='';
	document.main.limitfield4.value='';
	document.main.limitvalue4.value='';
	document.main.submit();
}

function togglesort(name){
	a=document.main.sortmode.value;
	if(a=="" || a=="UP"){
		mode="DOWN";
	} else {
		mode="UP";
	}
	document.main.sortmode.value=mode;
	document.main.sortfield.value=name;
	document.main.submit();
}

function highlight(id){
	document.getElementById(id).style.backgroundColor="#ffffff";
	document.getElementById(id).style.color="#ffffff";
}

function delight(id){
	document.getElementById(id).style.backgroundColor="";
	document.getElementById(id).style.color="";
}

function delimg(nr){
	act="imageaction_"+nr;
	pict="img_"+nr;
	document.main[act].value='delete';
	document.images[pict].src='img/nopic.jpg';
}

function delfile(nr){
	alert('bestand wordt verwijderd na opslag');
	act="fileaction_"+nr;
	document.main[act].value='delete';
}

function limitlist(group,lf1,lv1,lf2,lv2,lf3,lv3,lf4,lv4){
	document.main.action.value='list';
	document.main.group.value=group;
	document.main.serial.value='';	
	document.main.limitfield1.value=lf1;
	document.main.limitvalue1.value=lv1;
	document.main.limitfield2.value=lf2;
	document.main.limitvalue2.value=lv2;
	document.main.limitfield3.value=lf3;
	document.main.limitvalue3.value=lv3;
	document.main.limitfield4.value=lf4;
	document.main.limitvalue4.value=lv4;
	document.main.sortfield.value='';
	document.main.submit();
}


