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