function goToUrl(url){
	location.replace(url);
}
function addToCart(pID){
	test = "sel_aant"+pID;
	nummer = document.frm_prod[test].options[document.frm_prod[test].selectedIndex].value
	//nummer = document.frm_prod[test](document.frm_prod[test].selectedIndex).text;
	document.frm_prod.pid.value = pID;
	document.frm_prod.paantal.value = nummer;
	document.frm_prod.submit();
}
function reCalculateCosts(frm,why) {
	frm.act.value = why;
	if (why == "checkPostal") {
		country = frm.sel_land.options[frm.sel_land.selectedIndex].value;
		if (country == "FR" || country == "DE") frm.submit();
	}
	else frm.submit();
}
function photoShow(location,width,height){
	window.open(location,'','width='+width+',height='+height+',location=no,menubar=no,toolbar=no,status=no');
}
