function changePicture(pictureName,picturePlaceName){
	if (document.all){
		document.getElementById(picturePlaceName).style.filter="blendTrans(duration=1)";
		document.getElementById(picturePlaceName).filters.blendTrans.Apply();
	}

	document.getElementById(picturePlaceName).src = pictureName;

	if (document.all){
		document.getElementById(picturePlaceName).filters.blendTrans.Play();
	}
}
function SubmitOrder(){
	var filter  = /^[\w\.-]+@[\w\.-]+\.[a-zA-Z]{2,4}$/;
	if(document.shop.userFName.value == "" || document.shop.userSName.value == "" || document.shop.userStreet.value == "" || document.shop.userHouseNr.value == "" || document.shop.userPostalCode.value == "" || document.shop.userCity.value == "" || document.shop.userCountry.value == "" || document.shop.userTelephone.value == "" || !filter.test(document.shop.userMail.value)){
		alert("U moet alle velden (uitgezonderd bedrijf en BTW Nr) geldig invullen!\nYou must fill in all fields (except company and VAT Nr)");
		return false;
	}else{
		var answer = confirm('Weet u het zeker?\nAre you sure?','Ja','Nee');
		if (answer == true){
			return true;
		}else{
			return false;
		}
	}
}
