function confBut( ) {
	
		if ( confirm( 'Weet je het zeker?' ) ) {
				
				return true;
				
		}
		
		return false;
		
}

function doQuestion( question, url ) {
		
		if ( confirm( question ) ) {
				
				window.location = url;
				
		} else {
				
				return false;
				
		}
		
}

function copyInfo( ) {
		
		document.getElementById( 'd_address' ).value = document.getElementById( 'address' ).value;
		document.getElementById( 'd_postal' ).value = document.getElementById( 'postal' ).value;
		document.getElementById( 'd_city' ).value = document.getElementById( 'city' ).value;
		
}

function checkFields( i_ProductID ) {
		
		amountValue			=			document.getElementById( 'amount' ).options[ document.getElementById( 'amount' ).selectedIndex ].value;
		sizeValue			=			document.getElementById( 'size' ).options[ document.getElementById( 'size' ).selectedIndex ].value;
		
		if ( amountValue == '' || sizeValue == '' ) {
				
				alert( 'U dient eerst zowel een maat als aantal te kiezen..' );
				return false;
				
		}
		
		return true;
		
}
