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