
var $j=jQuery.noConflict();var get_selectie_script='';var selecties_adres_naam='';var selecties_adres_id='';var selecties_tekst_toevoegen='toevoegen aan selectie';var selecties_tekst_basis='';function selectie_tonen(data)
{if($j("#selecties_div"))
{if(data!='')
{$j("#selecties_div").html(data);}
else
{$j("#selecties_div").html(selecties_tekst_basis);}}
$j("a.nietklikken").click
(function(event)
{event.preventDefault();});}
function doe_ajax(variabelen)
{variabelen['taak']="selecties";variabelen['v']=site_versie_id;variabelen['site_taal_id']=site_taal_id;$j.get
(get_selectie_script,variabelen,function(data)
{selectie_tonen(data);});}
function maak_overzicht_selecties()
{doe_ajax({type_taak:'overzicht',adres_id:selecties_adres_id});}
var visits=0;function init_selecties()
{var link='<a href="#" onclick="doe_ajax ( { type_taak: \'toevoegen\', adres_id: '+selecties_adres_id+' } ); return false;" >'+selecties_tekst_toevoegen+'</a>';if($j("#link_selecties"))
{$j("#link_selecties").html(link);}
maak_overzicht_selecties();}
$j(document).ready
(function()
{init_selecties();});