
function openCalendar(ctrlobj)
{
	showx = event.screenX - event.offsetX +60; // + deltaX;
	showy = event.screenY - event.offsetY + 12; // + deltaY;
	newWINwidth = 210 + 4 + 18;	
	retval = window.showModalDialog("calendar/CalendarDlg.htm", "", "dialogWidth:197px; dialogHeight:230px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;scrollbars:no;Resizable=no; "  );
	if( retval != null ){
		ctrlobj.value = retval;
	}else{
	}
}
