function init9292(){
	now=new Date();
	if(document.getElementById('formReisadvies')){
		set9292Day(now.getDate());
		set9292Month(now.getMonth()+1);
		set9292Year(now.getFullYear());
		set9292Minute(now.getMinutes());
		set9292Hour(now.getHours());
	}
}
	
	
function set9292Day(day){
	//alert(day);
	document.getElementById('Day').value = format9292Value(day);
}

function set9292Month(month){
	//alert(month);
	document.getElementById('Month').value = format9292Value(month);
}

function set9292Year(year){
	//alert(year);
	document.getElementById('Year').value = format9292Value(year);
}


function set9292Minute(minute){
	//alert(minute);
	document.getElementById('Minute').value = format9292Value(minute);
}

function set9292Hour(hour){
	//alert(hour);
	document.getElementById('Hour').value = format9292Value(hour);
}

function format9292Value(input){
	if(input < 10)
		return "0" + input;
	else 
		return ""+input;
}

function onlyDigits(x,y){
	return true;
}

function onlyChars(x,y){
	return true;
}
