function open_calendar(inputObj, type){
	
	myWindow=window.open('calendar_setDate.php?inputObj='+inputObj+'&t='+type,'calendar_setDate','width=220,height=260');
	myWindow.focus();

}

function addDate(inputOby, day, month, year){
	
	document.getElementById(inputOby).value=day+'.'+month+'.'+year;

}