function addProduct( i_Amount ) {
	
	tblOrders			= document.getElementById( 'tblChildren' );
	lastRow				= tblOrders.rows.length;
	
	for ( i = lastRow - 1; i > 0; i-- ) {
		
		
			tblOrders.deleteRow( i );
		
	}
	
	for( i = 0; i < i_Amount; i++ ) {
		
		tblRow				= tblOrders.insertRow( tblOrders.rows.length );
		
		var tblCell					= tblRow.insertCell( 0 );
		
		var tblCell					= tblRow.insertCell( 1 );
		tblCell.style.padding		= '0px';
		tblCell.innerHTML			= 'Kind ' + ( i + 1 );
		
		var tblCell					= tblRow.insertCell( 2 );
		tblCell.style.padding		= '0px';
		tblCell.innerHTML			= 'Naam: <input type="text" name="child[' + i + ']" value="" style="width: 100px;" />';
		
		var tblCell					= tblRow.insertCell( 3 );
		tblCell.style.padding		= '0px';
		tblCell.innerHTML			= 'Leeftijd: <input type="text" name="age[' + i + ']" value="" style="width: 50px;" />';
		
	}
 	
}

function doQuestion( url ) {
	
	if ( confirm( 'Weet je het zeker?' ) ) {
		
		window.location = url;
		
	} else {
		
		return false;
		
	}
	
}