1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
<SCRIPT type='text/javascript'>window.open('Report.aspx?Begin_date=' + window.document.getElementById("DateTimePicker1").Value + '&End_date=' + window.document.getElementById("DateTimePicker2").Value)</script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>WebForm1</TITLE>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<SCRIPT type="text/javascript">
// This file contains java script used by the DropDownCalendar.aspx form.
//
// flag to avoid multiple listeners to same mouse-down event
var globalListenerWasCreated = false;
// optional references to drop-down calendars
// Notes: in case of single global calendar it can be replaced by a simple object instead of array
// or it can be not used at all: igcal_getCalendarById("SharedCalendar") will return calendar object dynamically.
var dropDownCalendars = new Array();
// it is called when drop-down calendar is initialized
// Note: that name should match with the ClientSideEvents.InitializeCalendar property
// which is set in aspx for WebCalendar
function initCalendarEvent(oCalendar)
{
// ensure absolute position
// Note: it can be skipped if style in aspx has that
oCalendar.element.style.position = "absolute";
// assume that calendar on start is visible
// create boolean member variable, which simplifies visibility test
oCalendar.isDisplayed = true;
// optional global cash of calendar-reference
// Note: igcal_getCalendarById("SharedCalendar") or something like that
// can be used instead of dropDownCalendars[ 0 ]
dropDownCalendars[dropDownCalendars.length] = oCalendar;
// hide drop-down calendar
showDropDown(oCalendar, null, false);
}
// it is called by date click events of WebCalendar
// Note: that name should match with the ClientSideEvents.DateClicked property
// which is set in aspx for WebCalendar
function calendarDateClickedEvent(oCalendar, oDate, oEvent)
{
// update editor with latest date and hide calendar
showDropDown(oCalendar, oDate, false, true);
}
// it is called by custom-button click event of WebDateTimeEdit
// Note: that name should match with the ClientSideEvents.CustomButtonPress property
// which is set in aspx for WebDateTimeEdit
function openDropDownEvent(oEdit, text, oEvent)
{
// open drop-down calendar
openDropDown(oEdit, dropDownCalendars[ 0 ]);
// Note: if dropDownCalendars is not used, then following commented line
// can be used instead of line above
//openDropDown(oEdit, igcal_getCalendarById("SharedCalendar"));
}
// it is called by spin and focus events of WebDateTimeEdit
// Note: that name should match with the ClientSideEvents.KeyDown/Spin/Focus/etc. properties
// which are set in aspx for WebDateTimeEdit
function closeDropDownEvent(oEdit, text, oEvent)
{
// hide calendar
showDropDown(oEdit.oCalendar, null, false);
}
// open calendar and attach it to WebDateTimeEdit
// oEdit - reference to the owner of calendar (WebDateTimeEdit)
// oCalendar - the WebCalendar which should be dropped and attached to oEdit
function openDropDown(oEdit, oCalendar)
{
if(oCalendar == null) return;
// add listener to mouse click events for page
if(!globalListenerWasCreated)
ig_csom.addEventListener(window.document, "mousedown", globalMouseDown, false);
globalListenerWasCreated = true;
// set reference of calendar to editor:
// create member variable, which points to drop-down calendar
oEdit.oCalendar = oCalendar;
// if it belongs to another oEdit, then close oCalendar
if(oCalendar.oEdit != oEdit)
{
showDropDown(oCalendar, null, false);
// set reference in oCalendar to this oEdit
// create member variable, which points to the owner oEdit
oCalendar.oEdit = oEdit;
}
// show calendar with date from editor
// if calendar is already opened, then hide calendar (last param)
showDropDown(oCalendar, oEdit.getDate(), true, true, true);
}
// synchronize dates in DateEdit and calendar, and show/close calendar
function showDropDown(oCalendar, date, show, update, toggle)
{
if(oCalendar == null) return;
if(toggle == true && oCalendar.isDisplayed == true)
show = update = false;
// update editor with latest date
if(update == true)
{
if(oCalendar.isDisplayed)
oCalendar.oEdit.setDate(date);
else
oCalendar.setSelectedDate(oCalendar.oEdit.getDate());
}
// check current state of calendar
if(oCalendar.isDisplayed == show)
return;
// show/hide calendar
oCalendar.element.style.display = show ? "block" : "none";
oCalendar.element.style.visibility = show ? "visible" : "hidden";
oCalendar.isDisplayed = show;
if(show)
positionCalendar(oCalendar);
}
// set position of calendar below DateEdit
function positionCalendar(oCalendar)
{
var elem = oCalendar.oEdit.Element;
// left and top position of calendar
var x = 0 , y = elem.offsetHeight;
if(y == null) y = 0 ;
// width and height of super parent (document)
var w = 0 , h = 0 ;
while(elem != null)
{
if(elem.offsetLeft != null) x += elem.offsetLeft;
if(elem.offsetTop != null) y += elem.offsetTop;
h = elem.offsetHeight;
w = elem.offsetWidth;
elem = elem.offsetParent;
}
// check if calendar fits below editor
// if not, then move it above editor
elem = oCalendar.element;
//if(y + elem.offsetHeight > h)
if(y > h + oCalendar.oEdit.Element.offsetHeight + window.document.body.scrollTop - y)
y -= (elem.offsetHeight + oCalendar.oEdit.Element.offsetHeight);
// check if calendar fits on the right from editor
// if not, then move it to the left
// 20 - extra shift for possible vertical scrollbar in browser
//if(x + elem.offsetWidth + 20 > w)
// x = w - elem.offsetWidth - 20 ;
if(x + elem.offsetWidth + 20 > w + window.document.body.scrollLeft)
x = w - elem.offsetWidth - 20 + window.document.body.scrollLeft;
oCalendar.element.style.left = x + "px";
oCalendar.element.style.top = y + "px";
}
// process mouse click events for page: close drop-down
function globalMouseDown(evt)
{
// reference to visible dropped-down calendar
var oCalendar = null;
// Note: 2 commented lines below can be used instead of a loop,
// if dropDownCalendars is not used and a single global calendar with id "SharedCalendar" is used
//oCalendar = igcal_getCalendarById("SharedCalendar");
//if(oCalendar != null && !oCalendar.isDisplayed) oCalendar = null;
var i = dropDownCalendars.length;
for(var i = 0 ; i < dropDownCalendars.length; i++) if(dropDownCalendars[i].isDisplayed)
{
oCalendar = dropDownCalendars[i];
break;
}
// check if opened calendar was found
if(oCalendar == null)
return;
// find source element
if(evt == null) evt = window.event;
if(evt != null)
{
var elem = evt.srcElement;
if(elem == null) if((elem = evt.target) == null) o = this;
while(elem != null)
{
// ignore events that belong to calendar
if(elem == oCalendar.element) return;
elem = elem.offsetParent;
}
}
// close calendar
showDropDown(oCalendar, null, false, false);
}
// function that processes CustomButtonClicked events of WebDateTimeEditWithCustomDropDown
function openCustomDropDownCalendar(oEdit, text, oEvent)
{
// find and open calendar with id "CustomDropDownCalendar"
// Note: openDropDown is a function defined in ig_editDrop1.js which does all job
openDropDown(oEdit, igcal_getCalendarById("CustomDropDownCalendar"));
}
</SCRIPT>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form name="Form1" method="post" action="WebForm1.aspx" id="Form1">
<input type="hidden" name="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" value="dDwtMTY3NzU4ODc3ODt0PDtsPGk8MT47PjtsPHQ8O2w8aTwxPjtpPDM+O2k8MTA+O2k8MTI+Oz47bDx0PHA8cDxsPEU7PjtsPDIwMDUtMi0xMC0wLTAtMC0wOz4+Oz47Oz47dDxwPHA8bDxFOz47bDwyMDA1LTItMTgtMTItMS0zNi01NjI7Pj47Pjs7Pjt0PGg8RHJpbGxkb3duVGFyZ2V0O19zZWxmO1BhZ2VUb1RyZWVSYXRpbztTeXN0ZW0uRG91YmxlLCBtc2NvcmxpYiwgVmVyc2lvbj0xLjAuNTAwMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODk8Nj47RW5hYmxlRHJpbGxEb3duO288dD47UnB0U3JjX0NoYW5nZWQ7bzxmPjtSZXBvcnRWaWV3U3RhdGU7aDxQYWdlUmVxdWVzdENvbnRleHQ7aDxWaWV3Q29udGV4dDs7SXNMYXN0UGFnZU51bWJlcktub3duO288Zj47TGFzdFBhZ2VOdW1iZXI7aTwwPjtTdWJyZXBvcnRDb250ZXh0OztQYWdlTnVtYmVyO2k8MT47UHJvbXB0aW5nSW5mbztoPD47TG9nT25JbmZvO2g8Pjs+O0ZhY3Rvcnk7Q3J5c3RhbERlY2lzaW9ucy5SZXBvcnRTb3VyY2UuUmVwb3J0U291cmNlRmFjdG9yeSxDcnlzdGFsRGVjaXNpb25zLlJlcG9ydFNvdXJjZSwgVmVyc2lvbj05LjIuMzMwMC4wLCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTY5MmZiZWE1NTIxZTEzMDQ7RW50ZXJwcmlzZUxvZ29uO1xlOz47Q2xpZW50VGFyZ2V0O0F1dG87SHlwZXJsaW5rVGFyZ2V0O19zZWxmO0Rpc3BsYXlQYWdlO288dD47PjtsPGk8MD47aTwxPjs+O2w8dDxoPD47Oz47dDxoPFBhZ2Vab29tRmFjdG9yO2k8MTAwPjtTZXBhcmF0ZVBhZ2VzO288dD47QmVzdEZpdFBhZ2U7bzx0PjtEaXNwbGF5VG9vbGJhcjtvPHQ+Oz47bDxpPDA+Oz47bDx0PGg8SGFzU2VhcmNoQnV0dG9uO288dD47SGFzUmVmcmVzaEJ1dHRvbjtvPGY+O0hhc1RvZ2dsZUdyb3VwVHJlZUJ1dHRvbjtvPHQ+O0hhc0V4cG9ydEJ1dHRvbjtvPHQ+O0hhc1pvb21CdXR0b247bzx0PjtIYXNQYWdlTmF2aWdhdGlvbkJ1dHRvbnM7bzx0PjtDdXN0b21ab29tSXRlbUluZGV4O2k8LTE+O1Nob3dHcm91cFRyZWU7bzx0PjtIYXNEcmlsbFVwQnV0dG9uO288dD47SGFzUHJpbnRCdXR0b247bzx0PjtIYXNHb3RvUGFnZUJ1dHRvbjtvPHQ+Oz47bDxpPDc+O2k8OT47aTwxMz47PjtsPHQ8cDw7cDxsPG9ua2V5cHJlc3M7PjtsPGphdmFzY3JpcHQ6aWYoZXZlbnQua2V5Q29kZT09MTMpIF9fZG9Qb3N0QmFjaygnQ3J5c3RhbFJlcG9ydFZpZXdlcjM6X2N0bDE6X2N0bDA6X2N0bDcnLCAnRU5URVJLRVknKTs+Pj47Oz47dDxwPDtwPGw8b25rZXlwcmVzczs+O2w8amF2YXNjcmlwdDppZihldmVudC5rZXlDb2RlPT0xMykgX19kb1Bvc3RCYWNrKCdDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsOScsICdFTlRFUktFWScpOz4+Pjs7Pjt0PHQ8O3A8bDxpPDA+O2k8MT47aTwyPjtpPDM+O2k8ND47aTw1PjtpPDY+O2k8Nz47aTw4Pjs+O2w8cDwyNSU7MjU+O3A8NTAlOzUwPjtwPDc1JTs3NT47cDwxMDAlOzEwMD47cDwxMjUlOzEyNT47cDwxNTAlOzE1MD47cDwyMDAlOzIwMD47cDwzMDAlOzMwMD47cDw0MDAlOzQwMD47Pj47bDxpPDM+Oz4+Ozs+Oz4+Oz4+Oz4+O3Q8QDA8O3A8bDxVOz47bDxTeXN0ZW0uRGF0ZVRpbWUsIG1zY29ybGliLCBWZXJzaW9uPTEuMC41MDAwLjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjc3YTVjNTYxOTM0ZTA4OTwyMDA1LTAyLTEwPjs+Pjs+Ozs+Oz4+Oz4+O2w8RGF0ZVRpbWVQaWNrZXIxO0RhdGVUaW1lUGlja2VyMjtDaGVja0JveExpc3QxOjA7Q2hlY2tCb3hMaXN0MToxO0NoZWNrQm94TGlzdDE6MTtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsMDtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsMztDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsNDtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsNTtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsNjtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsODtDcnlzdGFsUmVwb3J0Vmlld2VyMzpfY3RsMTpfY3RsMDpfY3RsMTA7Q3J5c3RhbFJlcG9ydFZpZXdlcjM6X2N0bDE6X2N0bDA6X2N0bDExO0NyeXN0YWxSZXBvcnRWaWV3ZXIzOl9jdGwxOl9jdGwwOl9jdGwxMjtDdXN0b21Ecm9wRG93bkNhbGVuZGFyOz4+raqDHizOY9ELQI7a7o2b2zfZmUI=" />
<script language="javascript">
<!--
function __doPostBack(eventTarget, eventArgument) {
var theform;
if (window.navigator.appName.toLowerCase().indexOf("netscape") > - 1 ) {
theform = document.forms["Form1"];
}
else {
theform = document.Form1;
}
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}
// -->
</script>
<script language="javascript" src="/ig_common/scripts/ig_csom.js"></script>
<script Language="javascript" src="/ig_common/webdatainput1/ig_edit.js"></script>
<script language="javascript">
<!--
function doExport(url, target, argument) {
var theUrl = url + "?__EVENTTARGET=" + target + "&__EVENTARGUMENT=" + argument;
window.location.href = theUrl;
}
// -->
</script>
<script Language="javascript" src="/ig_common/webschedule1/ig_calendar.js"></script>
<TABLE id="Table1" style="FONT-SIZE: 9pt; Z-INDEX: 101; LEFT: 8px; FONT-FAMILY: Verdana; POSITION: absolute; TOP: 8px"
cellSpacing="1" cellPadding="1" width="100%" border="0">
<TR>
<TD style="FONT-WEIGHT: bold; FONT-SIZE: 12pt; FONT-FAMILY: Verdana; HEIGHT: 46px" align="center"
colSpan="5">Отчет по изменениям электрической схемы</TD>
</TR>
<TR>
<TD style="FONT-SIZE: 9pt; FONT-FAMILY: Verdana">За период:
</TD>
<TD style="WIDTH: 23px">с</TD>
<TD style="WIDTH: 253px">
<style type=text/css>
.DateTimePicker10{background-color:#C5D5FC;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
.DateTimePicker11{background-color:#DCEDFD;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
.DateTimePicker12{background-color:#83A6F4;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
</style>
<input type="hidden" name="DateTimePicker1" id="DateTimePicker1" value="10.02.2005 0:00"/>
<input type="hidden" name="DateTimePicker1_p" id="DateTimePicker1_p"/>
<table cellspacing="1" cellpadding="0" id="igtxtDateTimePicker1" style="background-color:White;border-width:1px;border-style:Solid;border-color:#7F9DB9;"><tr>
<td><input type="text" style="background-color:White;width:132px;border-width:0;float:left;" value="10.02.2005 0:00" id="DateTimePicker1_t"></td>
<td align="center" valign="middle" class="DateTimePicker10" id="DateTimePicker1_b0" width="13px">
<table cellSpacing="0" cellPadding="0" style="font-family:arial;font-size:1px;line-height:0;cursor:Default;">
<tr><td> </td><td bgcolor="#506080"> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td bgcolor="#506080"> </td><td> </td></tr>
<tr><td bgcolor="#506080" colspan="3"> </td><td colspan="3"> </td><td bgcolor="#506080" colspan="3"> </td></tr>
<tr><td> </td><td bgcolor="#506080" colspan="3"> </td><td> </td><td bgcolor="#506080" colspan="3"> </td><td> </td></tr>
<tr><td colspan="2"> </td><td bgcolor="#506080" colspan="5"> </td><td colspan="2"> </td></tr>
<tr><td colspan="3"> </td><td bgcolor="#506080" colspan="3"> </td><td colspan="3"> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td><td bgcolor="#506080"> </td><td> </td><td> </td><td> </td><td> </td></tr>
</table>
</td>
</tr></table>
<script language="javascript">try{igedit_init("DateTimePicker1", 2 ,"DateTimePicker1,14 openCustomDropDownCalendar 15 closeDropDownEvent 0 closeDropDownEvent 8 closeDropDownEvent ,1,,,,0,1,1,,,0,,3,#506080,,,Gray,,,,,,,,,6,,200,,,,,",["2005-1-10-0-0-0-0,,","09.05.03 12:17","_ 03","09.05.03 12:17",""]);}catch(e){status="Can't init editor";}</script>
</TD>
<TD>по</TD>
<TD>
<style type=text/css>
.DateTimePicker20{background-color:#C5D5FC;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
.DateTimePicker21{background-color:#DCEDFD;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
.DateTimePicker22{background-color:#83A6F4;border-width:1px;border-style:Solid;border-color:#ABC1F4;font-size:1pt;}
</style>
<input type="hidden" name="DateTimePicker2" id="DateTimePicker2" value="18.02.2005 12:01"/>
<input type="hidden" name="DateTimePicker2_p" id="DateTimePicker2_p"/>
<table cellspacing="1" cellpadding="0" id="igtxtDateTimePicker2" style="background-color:White;border-width:1px;border-style:Solid;border-color:#7F9DB9;"><tr>
<td><input type="text" style="background-color:White;width:132px;border-width:0;float:left;" value="18.02.2005 12:01" id="DateTimePicker2_t"></td>
<td align="center" valign="middle" class="DateTimePicker20" id="DateTimePicker2_b0" width="13px">
<table cellSpacing="0" cellPadding="0" style="font-family:arial;font-size:1px;line-height:0;cursor:Default;">
<tr><td> </td><td bgcolor="#506080"> </td><td> </td><td> </td><td> </td><td> </td><td> </td><td bgcolor="#506080"> </td><td> </td></tr>
<tr><td bgcolor="#506080" colspan="3"> </td><td colspan="3"> </td><td bgcolor="#506080" colspan="3"> </td></tr>
<tr><td> </td><td bgcolor="#506080" colspan="3"> </td><td> </td><td bgcolor="#506080" colspan="3"> </td><td> </td></tr>
<tr><td colspan="2"> </td><td bgcolor="#506080" colspan="5"> </td><td colspan="2"> </td></tr>
<tr><td colspan="3"> </td><td bgcolor="#506080" colspan="3"> </td><td colspan="3"> </td></tr>
<tr><td> </td><td> </td><td> </td><td> </td><td bgcolor="#506080"> </td><td> </td><td> </td><td> </td><td> </td></tr>
</table>
</td>
</tr></table>
<script language="javascript">try{igedit_init("DateTimePicker2",2,"DateTimePicker2,14 openCustomDropDownCalendar 15 closeDropDownEvent 0 closeDropDownEvent 8 closeDropDownEvent ,1,,,,0,1,1,,,0,,3,#506080,,,Gray,,,,,,,,,6,,200,,,,,",["2005-1-18-12-1-36-562,,","09.05.03 12:17","_ 03","09.05.03 12:17",""]);}catch(e){status="Can't init editor";}</script>
</TD>
</TR>
<TR>
<TD>Изменения:</TD>
<TD style="FONT-SIZE: xx-small; WIDTH: 23px; FONT-FAMILY: Arial" colSpan="4"><table id="CheckBoxList1" border="0" style="font-family:Microsoft Sans Serif;font-size:X-Small;width:376px;">
<tr>
<td><input id="CheckBoxList1_0" type="checkbox" name="CheckBoxList1:0" checked="checked" /><label for="CheckBoxList1_0">подтвержденные</label></td><td><input id="CheckBoxList1_1" type="checkbox" name="CheckBoxList1:1" checked="checked" /><label for="CheckBoxList1_1">не подтвержденные</label></td>
</tr>
</table></TD>
</TR>
<TR>
<TD style="HEIGHT: 26px" align="center" colSpan="5"><input type="submit" name="Button1" value="Сформировать" id="Button1" style="font-family:Verdana;font-size:9pt;" /><input name="Submit1" id="Submit1" type="submit" value="Submit" /></TD>
</TR>
<TR>
<TD vAlign="bottom" align="center" colSpan="5">
<P> </P>
<P align="center"><div id="CrystalReportViewer3" style="height:50px;width:350px;">
<table cellpadding= 4 cellspacing= 0 style="width:350px;height:50px;font-family:Tahoma;font-size:8pt;color:buttontext;background-color:buttonface;border:solid;border-width:1px;border-top-color:buttonhighlight;border-left-color:buttonhighlight;border-bottom-color:buttonshadow;border-right-color:buttonshadow">
<tr><td><span style="font-weight:bold">CrystalReportViewer</span> - CrystalReportViewer3</td></tr>
<tr><td>Use the ReportSource or DataBindings property to specify a report source.</td></tr>
</table>
</div></P>
</TD>
</TR>
</TABLE>
<style type=text/css>
.CustomDropDownCalendar0{font-family:Verdana;font-size:9pt;background-color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar4{font-family:Verdana;font-size:9pt;background-color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar5{font-family:Verdana;font-size:9pt;background-color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar1{font-family:Verdana;font-size:9pt;background-color:Silver;color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar2{font-family:Verdana;font-size:9pt;background-color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar3{font-family:Verdana;font-size:9pt;background-color:White;width: 14 . 3 %;cursor:Hand;}
.CustomDropDownCalendar7{font-family:Verdana;font-size:9pt;width: 14 . 3 %;cursor:Default;}
</style>
<input type="hidden" name="CustomDropDownCalendar" id="CustomDropDownCalendar"/>
<table cellspacing="0" cellpadding="0" id="igcalCustomDropDownCalendar" style="Z-INDEX:102;LEFT:24px;POSITION:absolute;TOP:320px;font-family:Verdana;font-size:9pt;border-width:1px;border-style:Solid;border-color:Gray;background-color:White;height:196px;width:250px;cursor:Default;">
<tr><td>
<table width="100%" height="100%" cellspacing="0" cellpadding="2" bgcolor="Silver"><tr>
<td nowrap align="center" rowspan= 2 id="CustomDropDownCalendar_500" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Hand;"><</td>
<td nowrap align="center" width="100%" id="CustomDropDownCalendar_510" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Default;">Февраль 2005 </td>
<td nowrap align="center" rowspan= 2 id="CustomDropDownCalendar_502" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Hand;">></td>
<tr><td nowrap align="center" width="100%" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Default;">
<select id="CustomDropDownCalendar_504" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Hand;"><option>Январь</option><option selected>Февраль</option><option>Март</option><option>Апрель</option><option>Май</option><option>Июнь</option><option>Июль</option><option>Август</option><option>Сентябрь</option><option>Октябрь</option><option>Ноябрь</option><option>Декабрь</option></select>
<select id="CustomDropDownCalendar_506" style="font-family:Verdana;font-size:9pt;background-color:Silver;cursor:Hand;"><option> 1995 </option><option> 1996 </option><option> 1997 </option><option> 1998 </option><option> 1999 </option><option> 2000 </option><option> 2001 </option><option> 2002 </option><option> 2003 </option><option> 2004 </option><option selected> 2005 </option><option> 2006 </option><option> 2007 </option><option> 2008 </option><option> 2009 </option><option> 2010 </option><option> 2011 </option><option> 2012 </option><option> 2013 </option><option> 2014 </option><option> 2015 </option></select>
</td></tr>
</table>
</td></tr>
<tr><td height="100%">
<table width="100%" height="100%" cellspacing="0" cellpadding="2" rules="none" style="border-collapse:collapse;" border="0" bordercolor="Gray" id="CustomDropDownCalendar_512">
<tr id="CustomDropDownCalendar_514">
<td align="center" class="CustomDropDownCalendar7">Пн</td>
<td align="center" class="CustomDropDownCalendar7">Вт</td>
<td align="center" class="CustomDropDownCalendar7">Ср</td>
<td align="center" class="CustomDropDownCalendar7">Чт</td>
<td align="center" class="CustomDropDownCalendar7">Пт</td>
<td align="center" class="CustomDropDownCalendar7">Сб</td>
<td align="center" class="CustomDropDownCalendar7">Вс</td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d0" class="CustomDropDownCalendar2"> 31 </td>
<td align="center" id="CustomDropDownCalendar_d1" class="CustomDropDownCalendar0"> 1 </td>
<td align="center" id="CustomDropDownCalendar_d2" class="CustomDropDownCalendar0"> 2 </td>
<td align="center" id="CustomDropDownCalendar_d3" class="CustomDropDownCalendar0"> 3 </td>
<td align="center" id="CustomDropDownCalendar_d4" class="CustomDropDownCalendar0"> 4 </td>
<td align="center" id="CustomDropDownCalendar_d5" class="CustomDropDownCalendar4"> 5 </td>
<td align="center" id="CustomDropDownCalendar_d6" class="CustomDropDownCalendar4"> 6 </td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d7" class="CustomDropDownCalendar0"> 7 </td>
<td align="center" id="CustomDropDownCalendar_d8" class="CustomDropDownCalendar0"> 8 </td>
<td align="center" id="CustomDropDownCalendar_d9" class="CustomDropDownCalendar0"> 9 </td>
<td align="center" id="CustomDropDownCalendar_d10" class="CustomDropDownCalendar1"> 10 </td>
<td align="center" id="CustomDropDownCalendar_d11" class="CustomDropDownCalendar0"> 11 </td>
<td align="center" id="CustomDropDownCalendar_d12" class="CustomDropDownCalendar4"> 12 </td>
<td align="center" id="CustomDropDownCalendar_d13" class="CustomDropDownCalendar4"> 13 </td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d14" class="CustomDropDownCalendar0"> 14 </td>
<td align="center" id="CustomDropDownCalendar_d15" class="CustomDropDownCalendar0"> 15 </td>
<td align="center" id="CustomDropDownCalendar_d16" class="CustomDropDownCalendar0"> 16 </td>
<td align="center" id="CustomDropDownCalendar_d17" class="CustomDropDownCalendar0"> 17 </td>
<td align="center" id="CustomDropDownCalendar_d18" class="CustomDropDownCalendar5"> 18 </td>
<td align="center" id="CustomDropDownCalendar_d19" class="CustomDropDownCalendar4"> 19 </td>
<td align="center" id="CustomDropDownCalendar_d20" class="CustomDropDownCalendar4"> 20 </td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d21" class="CustomDropDownCalendar0"> 21 </td>
<td align="center" id="CustomDropDownCalendar_d22" class="CustomDropDownCalendar0"> 22 </td>
<td align="center" id="CustomDropDownCalendar_d23" class="CustomDropDownCalendar0"> 23 </td>
<td align="center" id="CustomDropDownCalendar_d24" class="CustomDropDownCalendar0"> 24 </td>
<td align="center" id="CustomDropDownCalendar_d25" class="CustomDropDownCalendar0"> 25 </td>
<td align="center" id="CustomDropDownCalendar_d26" class="CustomDropDownCalendar4"> 26 </td>
<td align="center" id="CustomDropDownCalendar_d27" class="CustomDropDownCalendar4"> 27 </td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d28" class="CustomDropDownCalendar0"> 28 </td>
<td align="center" id="CustomDropDownCalendar_d29" class="CustomDropDownCalendar2"> 1 </td>
<td align="center" id="CustomDropDownCalendar_d30" class="CustomDropDownCalendar2"> 2 </td>
<td align="center" id="CustomDropDownCalendar_d31" class="CustomDropDownCalendar2"> 3 </td>
<td align="center" id="CustomDropDownCalendar_d32" class="CustomDropDownCalendar2"> 4 </td>
<td align="center" id="CustomDropDownCalendar_d33" class="CustomDropDownCalendar3"> 5 </td>
<td align="center" id="CustomDropDownCalendar_d34" class="CustomDropDownCalendar3"> 6 </td>
</tr>
<tr>
<td align="center" id="CustomDropDownCalendar_d35" class="CustomDropDownCalendar2"> 7 </td>
<td align="center" id="CustomDropDownCalendar_d36" class="CustomDropDownCalendar2"> 8 </td>
<td align="center" id="CustomDropDownCalendar_d37" class="CustomDropDownCalendar2"> 9 </td>
<td align="center" id="CustomDropDownCalendar_d38" class="CustomDropDownCalendar2"> 10 </td>
<td align="center" id="CustomDropDownCalendar_d39" class="CustomDropDownCalendar2"> 11 </td>
<td align="center" id="CustomDropDownCalendar_d40" class="CustomDropDownCalendar3"> 12 </td>
<td align="center" id="CustomDropDownCalendar_d41" class="CustomDropDownCalendar3"> 13 </td>
</tr>
</table>
</td></tr>
<tr><td nowrap style="font-family:Verdana;font-size:9pt;background-color:Silver;width:100%;padding:2;cursor:Hand;" align="left" id="CustomDropDownCalendar_508">Today: 18 . 02 . 2005
</td></tr>
</table>
<script language="javascript">try{igcal_init("CustomDropDownCalendar", "2005,2,10,2005,2,1,1,1,9998,12,31", "CustomDropDownCalendar,1,1,,1,1,0,,,,1,0,,,,,,", "Январь,Февраль,Март,Апрель,Май,Июнь,Июль,Август,Сентябрь,Октябрь,Ноябрь,Декабрь,initCalendarEvent,calendarDateClickedEvent,,,,,");}catch(e){status = "Error to load calendar";}</script>
<span id="Label1" style="Z-INDEX: 103; LEFT: 432px; POSITION: absolute; TOP: 288px">Label</span></form>
</SCRIPT>
</body>
</HTML>