function fPopUpCalendarDlg(ctrlobj) {
  showx = event.screenX - event.offsetX - 4 - 210 ; // + deltaX;
  showy = event.screenY - event.offsetY + 18; // + deltaY;
  newWINwidth = 210 + 4 + 18;

  retval = window.showModalDialog("/images/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;
  }
}


function fnWinOpen(link){

  window.open(link,"","toolbar=no,location=yes,scrollbars=yes,resizable=yes,top=20,left=60,width=700,height=500");
}
