function goTo(url) { 
	window.location = url;
	}
	
function fadeAndGoTo(url, element) {
	Effect.Fade(element);
	setTimeout("goTo('"+url+"')", 1000); <!-- 1 seconde -->
	}

function set_shipping() {
	var shipping_country = document.getElementById('shipping_country');
	var country = shipping_country.options[shipping_country.selectedIndex].innerHTML;
	var subtotaal = document.getElementById('subtotaal').innerHTML;
	var shipping = document.getElementById('shipping_country').value;
	var totaal = parseFloat(subtotaal) + parseFloat(shipping);
	document.getElementById('shipping').value = shipping;
	if(isNaN(totaal)) { 
		document.getElementById('totaal').innerHTML = '';	
		} else {
		document.getElementById('totaal').innerHTML = totaal.toFixed(2);	
		}
	alert(document.getElementById('orderURL').innerHTML);
	}
	
function validate_order() {
	var totaal = document.getElementById('totaal').innerHTML;
	if (isNaN(totaal) || totaal < 1) {
		alert ('Gelieve verzendkosten te selecteren.');
		return false;
		}
	return true;
	}	