var ajxgetCartInfo = new sack();
function updateCartInfo()
{
  //Stel de pagina in die aangeroepen moet worden
  ajxgetCartInfo.requestFile = "include/AJX/ajx_getCartInfo.asp";
  //Stel de methode in waarop de parameters doorgegeven moeten worden
  ajxgetCartInfo.method = "post";
  
  //(Optioneel) Stel de functie in de uitgevoerd wordt als data verzonden is
  ajxgetCartInfo.onCompletion = function(){setCartInfo();}
  //Voer de request uit
  ajxgetCartInfo.runAJAX();		
}

function setCartInfo(){	
	if(ajxgetCartInfo.response != ""){
		//if(window.)
		if ( document.getElementById('divWinkelwagenTotaalBedrag') ) {
			document.getElementById('divWinkelwagenTotaalBedrag').innerHTML = ajxgetCartInfo.response;
		}
	}
}

function doTTV(id,type){
	//alert('TTV: '+id);
	if(type == "undefined"){
		type=1;	
	}
	window.open("/ttv/?relatieID="+id+"&relatieType="+type,"TTV","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width="+screen.width+", height="+screen.height)
}

//updateCartInfo()
