
//DateSelector
	function SelectDate(Control, Form)
	{
		
		var dtCurrent = Control.value //""
		var aArguments = new Array()

		aArguments["currentDate"] = dtCurrent

		var NewWindow = window.open("/Includes/DatePicker/DateSelect.asp?Control=" + Control.name + "&Form=" + Form.name, Control.name, "height=205px,width=185px,scroll=no,status=no,help=no,resizable=no,unadorned=yes")
		NewWindow.focus();

		
	}
//end DateSelector