function dateAndTime() {

	var form = document.formularmini;

	if(form.REQ0JourneyDate.value == "") {
	
		now = new Date();
		form.REQ0JourneyDate.value = now.getDate()+"."+(now.getMonth()+1)+"."+now.getFullYear();
		form.REQ0JourneyTime.value = now.getHours()+":"+now.getMinutes();
	}
};

function confirmAction(txt,url) {
	var c=confirm(txt); (c) ? window.location.href=url : "";
}
