// JavaScript Document


function parseDate() { 
	
	var anDatum = Date.parse(window.document.getElementById('holder1').value, "dd.MM.yyyy");
	window.document.getElementById('holder1').value = anDatum.toString("dd.MM.yyyy");

}