// JavaScript Document
function ToggleOpen(id,input) {
	if (document.getElementById) {
	var tbod = document.getElementById(id);
		if (tbod && typeof tbod.className == 'string') {
			tbod.className = 'on';			
			document.getElementById(input).checked;
		}
	}
}

function ToggleClose(id,input) {
	if (document.getElementById) {
		var tbod = document.getElementById(id);
		if (tbod && typeof tbod.className == 'string') {
			tbod.className = 'off';		
			document.getElementById(input).checked;
			}		
	}
}


function Begrafenis() {
	 document.getElementById('begrafenis').className = 'on';		
 	 document.getElementById('crematie').className = 'off';		
}

function Crematie() {
	 document.getElementById('begrafenis').className = 'off';		
 	 document.getElementById('crematie').className = 'on';		
}

function Close(id){
	document.getElementById(id).className = 'off';	
}

function Open(id){
	document.getElementById(id).className = 'on';	
}

function Disabled(id){
		document.getElementById(id).disabled = true;
		EmptyValue(id);
}

function Enabled(id){
		document.getElementById(id).disabled = false;	
		document.getElementById(id).focus();
}

function EmptyValue(id){
	document.getElementById(id).value='';
}
