function addhuskeliste(documentid){
	
	var ajaxurl =  '/ajrgfx/ajax/huskeliste.asp?documentid=' + documentid;

	makeRequest(ajaxurl,'isinhuskeliste');
	
}

function removefromhuskeliste(documentid){
	
	var ajaxurl =  '/ajrgfx/ajax/removefromhuskeliste.asp?documentid=' + documentid;

	makeRequest(ajaxurl,'isinhuskeliste');
	
}

function removefromlist(index){

	document.location = '/ajrgfx/ajax/remove.asp?index=' + index;
	
}

function deletehuskeliste(){

	document.location = '/ajrgfx/ajax/remove.asp?clear=true';
	
}
