
//Show The Calendar Window
function CalendarWindowOpen(ControlID, allowTime, left, top)
{
	var strTarget =  "/RIAC/Scripts/DateSelectionIFrame.aspx?id=" + ControlID + "&ReturnTime=" + allowTime;
	var resStr = window.showModalDialog(strTarget, window , "dialogTop:" + top + "; dialogLeft:" + left + "; dialogHeight: 190px ; dialogWidth: 215px ; Help : no ; scroll : no ; center : no ; help : no ; resizable : no ; status : no ; unadorned : no");			
	if(resStr !=undefined)
		//window.document.all[ControlID + ":" + ControlID].value = resStr;
		window.document.all[ControlID].value = resStr;
}