function popup(url) {
	var pop=window.open(url,'winkel',"top=5,left=5,scrollbars=1,width=780,height=580");
}  

function popfoto(url) {
	var pop2=window.open(url,'info',"top=5,left=5,scrollbars=1,width=780,height=580");
}  

function categorie(waarop){ 
//categorieform invullen
	document.form4.cat.value=waarop;
	document.form4.submit(); 
	pop=focus();	
} 

function herladen(){
//bijwerken artikellijst na openen bestelpopup
	opener.document.form0.submit();	
	pop=focus();	
}

function bestelsluit(nr){
	var terug='http://'+window.location.host+'/content/index.php#'+nr;
	//alert(terug);
	window.opener.location.assign(terug);
	//opener.location.reload([forceGet])  
}

function bestelweg(wegid, nwaantal) { 
//bestelling verwijderen of aanpassen op bestelformulier
	document.form3.f.value=''; 
	document.form3.nawbij.value=''; 
	document.form3.weg.value=wegid; 
	document.form3.nwaantal.value=nwaantal;
	document.form3.submit(); 
	pop=focus();
} 

function vraagnaw() { 
//naar naw-deel van bestelling gaan op bestelformulier
	document.form3.f.value='';
	document.form3.weg.value='';
	document.form3.submit(); 
} 

//teruggaan op bestelformulier
function teruggaan() { 
	document.form3.f.value=''; 
	document.form3.weg.value=''; 
	document.form3.submit(); 
} 

function naarstart() {
	window.opener.parent.location.href='http://'+window.location.host+'/index2.php';
}

