function setactiveTemplate (template_id,site_id,live_site,kop_id) {
	url = live_site+'ajaxcallback.php?action=setactivetemplate&template_id='+template_id+'&site_id='+site_id+'&kop_id='+kop_id;
	new Ajax.Request(
		url,
		{
			asynchronous:0,
			onComplete: function (request) {
				if(request.responseText != '') {
					$('template_'+kop_id).className = 'active';
					$('template_'+request.responseText).className = 'select';
				}
			}
		}
	)
	//location.reload('bbb');
	window.location.href = 'index.php?p=mod_uiterlijk&starttab=2';
}

function setdefault(color,id) {
	$('ColorDiv'+id).style.backgroundColor = color;
	$('kleurwaarde['+id+']').value = color;
}

function resetcolors(site_id,template_id) {
	Check = confirm("De orginele kleuren worden teruggezet en de aangepaste verwijderd.\nWilt u doorgaan?");
	if(Check == false){
	} else {
		url = 'ajaxcallback.php?action=resetcolors&template_id='+template_id+'&site_id='+site_id;
		new Ajax.Request(
			url,
			{
				asynchronous:0
			}
		)
		//location.reload('bbb');
		//window.location.href = 'index.php?p=mod_uiterlijk';
	}
}
