скребковый конвейер

яю /***************************************************************************** Copyright (c) 2001 Thomas Brattli (www.bratta.com) eXperience DHTML coolMenus - Get it at www.bratta.com Version 3.02 This script can be used freely as long as all copyright messages are intact. ******************************************************************************/ /***************************************************************************** Default browsercheck - Leave this one ******************************************************************************/ function lib_bwcheck(){ //Browsercheck (needed) this.ver=navigator.appVersion; this.agent=navigator.userAgent this.dom=document.getElementById?1:0 this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0; this.ie4=(document.all && !this.dom)?1:0; this.ie=this.ie4||this.ie5||this.ie6 this.mac=this.agent.indexOf("Mac")>-1 this.opera5=this.agent.indexOf("Opera 5")>-1 this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; this.ns4=(document.layers && !this.dom)?1:0; this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5 || this.dom) return this } var bw=new lib_bwcheck() //Making browsercheck object var mDebugging=1 //General debugging variable. Set to 0 for no debugging, 1 for alerts or 2 for status debugging. oCMenu=new makeCoolMenu("oCMenu") //Making the menu object. Argument: menuname oCMenu.useframes=0 //Do you want to use the menus as coolframemenu or not? (in frames or not) - Value: 0 || 1 oCMenu.frame="frmMain" //The name of your main frame (where the menus should appear). Leave empty if you're not using frames - Value: "main_frame_name" oCMenu.useclick=0 //If you want the menu to be activated and deactivated onclick only set this to 1. - Value: 0 || 1 /*If you set this to 1 you will get a "hand" cursor when moving over the links in NS4. NOTE: This does not apply to the submenus if the menu is used in frames due some mayor problems with NS4*/ oCMenu.useNS4links=1 //After adding the "hover effect" for netscape as well, all styles are lost. But if you want padding add it here. oCMenu.NS4padding=2 //If you have select boxes close to your menu the menu will check for that and hide them if they are in the way of the menu. //This feature does unfortunatly not work in NS4! oCMenu.checkselect=0 /*If you choose to have this code inside a linked js, or if your using frames it's important to set these variables. This will help you get your links to link to the right place even if your files are in different folders. The offlineUrl variable is the actual path to the directory where you js file are locally. This is just so you can test it without uploading. Remember to start it with file:/// and only use slashes, no backward slashes! Also remember to end with a slash */ oCMenu.offlineUrl="file:///C|/Inetpub/wwwroot/dhtmlcentral/" //Value: "path_to_menu_file_offline/" //The onlineUrl variable is the online path to your script. Place in the full path to where your js file is. Remember to end with a slash. oCMenu.onlineUrl="http://www.dhtmlcentral.com/coolmenus/examples/withoutframes/" //Value: "path_to_menu_file_online/" oCMenu.pagecheck=1 //Do you want the menu to check whether any of the subitems are out of the bouderies of the page and move them in again (this is not perfect but it hould work) - Value: 0 || 1 oCMenu.checkscroll=1 //Do you want the menu to check whether the page have scrolled or not? For frames you should always set this to 1. You can set this to 2 if you want this feature only on explorer since netscape doesn't support the window.onscroll this will make netscape slower (only if not using frames) - Value: 0 || 1 || 2 oCMenu.resizecheck=1 //Do you want the page to reload if it's resized (This should be on or the menu will crash in Netscape4) - Value: 0 || 1 oCMenu.wait=1000 //How long to wait before hiding the menu on mouseout. Netscape 6 is a lot slower then Explorer, so to be sure that it works good enough there you should not have this lower then 500 - Value: milliseconds //Background bar properties oCMenu.usebar=0 //If you want to use a background-bar for the top items set this on - Value: 1 || 0 oCMenu.barcolor="white" //The color of the background bar - Value: "color" oCMenu.barwidth="97%" //The width of the background bar. Set this to "menu" if you want it to be the same width as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barheight="3%" //The height of the background bar. Set this to "menu" if you want it to be the same height as the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barx=0 //The left position of the bar. Set this to "menu" if you want it be the same as the left position of the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.bary="95%" //The top position of the bar Set this to "menu" if you want it be the same as the top position of the menu. (this will change to match the border if you have one) - Value: px || "%" || "menu" oCMenu.barinheritborder=1 //Set this to 1 if you want the bar to have the same border as the top menus - Value: 0 || 1 x2 = window.screen.availWidth; y2 = window.screen.availHeight; //Placement properties oCMenu.rows=1 //This controls whether the top items is supposed to be laid out in rows or columns. Set to 0 for columns and 1 for row - Value 0 || 1 oCMenu.fromleft="0%" //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%" oCMenu.fromtop="93%" //This is the left position of the menu. (Only in use if menuplacement below is 0 or aligned) (will change to adapt any borders) - Value: px || "%" oCMenu.pxbetween=0 //How much space you want between each of the top items. - Value: px || "%" oCMenu.menuplacement=0 //TOP LEVEL PROPERTIES - ALL OF THESE MUST BE SPESIFIED FOR LEVEL[0] oCMenu.level[0]=new Array() //Add this for each new level oCMenu.level[0].width="19%" //The default width for each level[0] (top) items. You can override this on each item by spesifying the width when making the item. - Value: px || "%" oCMenu.level[0].height="5%" //The default height for each level[0] (top) items. You can override this on each item by spesifying the height when making the item. - Value: px || "%" oCMenu.level[0].bgcoloroff="white" //The default background color for each level[0] (top) items. You can override this on each item by spesifying the backgroundcolor when making the item. - Value: "color" oCMenu.level[0].bgcoloron="white" //The default "on" background color for each level[0] (top) items. You can override this on each item by spesifying the "on" background color when making the item. - Value: "color" oCMenu.level[0].textcolor="Navy" //The default text color for each level[0] (top) items. You can override this on each item by spesifying the text color when making the item. - Value: "color" oCMenu.level[0].hovercolor="Navy" //The default "on" text color for each level[0] (top) items. You can override this on each item by spesifying the "on" text color when making the item. - Value: "color" //oCMenu.level[0].style="padding:1px; text-align:center; font-family:tahoma,arial,helvetica; font-size:12px; font-weight:bold" //The style for all level[0] (top) items. - Value: "style_settings" oCMenu.level[0].border=1 //The border size for all level[0] (top) items. - Value: px oCMenu.level[0].bordercolor="black" //The border color for all level[0] (top) items. - Value: "color" oCMenu.level[0].offsetX=4 //The X offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px oCMenu.level[0].offsetY=4 //The Y offset of the submenus of this item. This does not affect the first submenus, but you need it here so it can be the default value for all levels. - Value: px/ oCMenu.level[0].NS4font="tahoma,arial,helvetica" oCMenu.level[0].NS4fontSize="2" oCMenu.makeMenu('top0','','K1>@ @0745;0','http://www.fips.ru/ipc8/Cipc_htm.htm','') oCMenu.makeMenu('top1','',' @0745;','http://www.fips.ru/ipc8/Cipc/htm/CIpc-2006_B/CIpc-2006_B.htm') oCMenu.makeMenu('top2','',' :;0AA','http://www.fips.ru/ipc8/Cipc/htm/CIpc-2006_B/CIpc-2006_B65.htm') oCMenu.makeMenu('top3','','','http://www.fips.ru/ipc8/Cipc/htm/CIpc-2006_B/CIpc-2006_B65G.htm#top') oCMenu.makeMenu('top5','','','http://www.fips.ru/ipc8/Cipc/htm/CIpc-2006_B/CIpc-2006_B65G.htm#end') //Leave these two lines! Making the styles and then constructing the menu oCMenu.makeStyle(); oCMenu.construct() B65G - #AB@>9AB20 4;O E@0=5=8O 8;8 B@0=A?>@B8@>2:8, =0?@8=2595@K 4;O 703@C7:8 8;8 @073@C7:8 >?@>:84K20=85=2595@=K5 A8AB5<K 4;O 2, F5E>2 8 B.?.; ?=52=2595@K (CAB@>9AB20 4;O B@0=A?>@B8@>2:8 8;8 E@0=5=8O, 8A?>;L7C53> 20=8O 8;8 >1@01>B:8 8745;89 8;8 2, A>B25BAB2CNI89 ?>4:;0AA, =0?@8<5@ ?@8 >1@01>B:5  B21D 43/00,  B23Q 7/00,  B23Q 41/02; 02B>18;L=K9, 65;57=>4>@>6=K9, 2>4=K9 8;8 2>74CH=K9 B@0=A?>@B  B60 - B64;A8AB5@B8@>2:8, A?5F80;L=> ?@54=07=0G5==K5 4;O A1>@>G=KE ;8=89 A0E>4=KE 8;8 ?@8F5?=KE B@0=A?>@B=KE A@54AB2  B62D 65/00; 4;O C?0:>2:8  B65B; 20=85 B>=:8<8 8;8 =8B5284=K<8 <0B5@80;0<8  B65H; ?>4J59AB20, =0?@8<5@ 3@C7G8:8 4;O 3@C7>28:0  B66; @07;82>G=>-C:C?>@>G=>5 ?@>872>4AB2>  B67; A?5F80;L=> ?@54=07=0G5==K5 4;O ?>475289  E21F 13/00; E@0=5=85 8;8 @0A?@545;5=85 307>2 8;8 684:>AB59  F17; 2 C?@02;5=88 @048>0:B82=K<8 <0B5@80;0<8  G21C 19/00) !>45@60=85 ?>4:;0AA0  #'-  #'+ "+  %  >3@C7:0 8 @073@C7:0  65/00 67/00 69/00 "@0=A?>@B8@>2:0 8 @073@C7:0  63/00 %@0=5=85 8745;89  1/00 3/00 5/00 (B015;8@>20=85 8 A:;04K20=85, 872;5G5=85 87 HB015;59 8 @071>@:0 8745;89  57/00 - 61/00 AK?CG8E 2  65/28 1;53G5=85 ?>3@C7>G=>-@073@C7>G=KE @01>B, 2K?>;=O5<KE 2@CG=CN  7/00 9/00  +,  #'+  5E0=8G5A:85 A 15A:>=5G=K< M;5<  15/00 - 23/00 A >A>1K< 42865=85=>A8B5;O  25/00 27/00 29/00 33/00 A ?@>G8<8 2840<8 42865=8O  35/00 :>20==K5 8;8 A8AB51I53> ?@8<5=5=8O  37/00 49/00 65;>10; @>;L30=38; 2K1@0AK20B5;8  11/00 13/00 31/00 >=AB@C:B82=K5 M;530B5;L=K5 CAB@>9AB20, ?@8<5=8<K5 : @07;8G=K< 2840=2595@>2 8;8 65;>1>2 @>;8:8, @030B5;L=K5 CAB@>9AB20 4;O 20=8O 8745;8O<8 8;8 <0B5@80;0<8  39/00 41/00 47/00 :>=B@>;L=K5, ?@54>E@0=8B5;L=K5 CAB@>9AB20; A<07:0, G8AB:0 8 B.?.  43/00 45/00 5<5E0=8G5A:85 4;O 8745;89; 4;O 2, E@0=8<  51/00 53/00 54/00 !?>A>1K 8 CAB@>9AB20 4;O E@0=5=8O B65G 1/00 %@0=5=85 8745;89 ?>HBCG=>5 8;8 2 7040==>@O4:5 =0 A:;040E 8;8 2 =2595@=K5 A8AB520@=KE 8 25I52KE A:;040E 8;8 2 F5E0E  B65G 37/00; HB015;8@>20=85 8745;89  B65G 57/00; 872;5G5=85 8745;89 87 HB015;59  B65G 59/00; ?>3@C7>G=>-@073@C7>G=K5 CAB@>9AB20  B65G 65/00; @0A?>;>65=85 8745;89 2 ACH8;:0E 8;8 2 ?5:0@=KE ?5G0E  F26,  F27) B65G 1/02 .A:;04A:85 CAB@>9AB20 (1>@C4>20=85 4;O 2  A47B,  A47F,  A47G; 30@068  E04H; =0:>?8B5;L=K5 CAB@>9AB20, :>20==K5 A <0H8=0B<5B:8 8;8 AG8BK20=8O 40==KE,  G06K; 0??0@0BK 4;O @07@B8@>2:8 =5B  G07D; 02B>?CA:0=88 2 =8E =5B 8 65B>=>2,  G07F) B65G 1/04 ..<5E0=8G5A:85 B65G 1/06 ...A ?@8A?>A>1;5=8O40G8 8745;89 : ;>65=88 8745;8O ( B65G 1/12 8<55B ?@58) [3] B65G 1/10 ...A> AB5;;060<8, 8<5NI876=>ABL >B=>A8B5;L=>3> ?5@51;53G5=8O C:;04:8 8;8 872;5G5=8O 8745;89 B65G 1/12 ...A >?>@0<8 8;8 45@60B5;O<8 8745;89, ?5@5<5I05<K 70=BC@C 4;O >1;53G5=8O C:;04:8 8;8 872;5G5=8O 8745;89 B65G 1/137 ...A ?@8A?>A>1;5=8O<8 8;8 A@54AB203> C?@02;5=8O 4;O 2K1>@0 2K3@C6059AB20 4;O ?>40G8 8745;89 : :>=2595@0;L:8E 3@C?? 8745;89  B65G 47/04) [4] B65G 1/14 ..45@60B5;8 HB015;59 8;8 @0745;8B5;8 B65G 1/16 .A?5F80;L=>5 @079 ?;>I04:5 B65G 3/00 %@0=5=85 2 8;8 >B45;L=KE 8745;89 =020;>I0459 8;8 :>=B59=5@>2, @0A?@545;5=85 AK?CG8E 2 8;8 8E A3@510=85  B65G 65/00,  B65G 69/00; E@0=5=85 A5;LA:>E>7O9AB25==KE :C;LBC@ 8;8 ?@>4C:B>2 A04>2>4AB20  A01F 25/00) B65G 5/00 %@0=5=85 684:>AB59 2 5AB5AB25==KE /?@8@>4=KE/ 8;8 8A:CAAB25==KE 2?048=0E 8;8 A:2068=0E 2 75A01;820=85 ?>475B, =0?@8AB8 4;O 684:>AB59  E21F 17/00) #AB@>9AB20, >1;53G0NI85 ?5@5@>B:85 @0AAB>O=8O, =0?@820@=KE A:;040E 8;8 F5E0E (65;>10  B65G 11/00; @>;L30=38  B65G 13/00; CAB@>9AB20 4;O ?5@5=>A:8 103060  A45C 13/00; 45@60B5;8 8;8 CAB@>9AB20 4;O ?5@5=>A:8 ?@542 8;8 4;O 8E 8A?>;L7>20=8O 2 BC@8AB8G5A:8E ?>E>40E  A45F 5/00; B@0=A?>@B=K5 A@54AB20 2>>1I5, >A8, :>;5A0  B60; B@0=A?>@B=K5 A@54AB20 =0 2>74CH=>9 ?>4CH:5  B60V; @CG=K5 B5;56:8, A0;07:8, :>=AB@C:B82=K5 M;5;5A=KE CAB@>9AB2 8;8 @B=KE A@54AB2, C?@02;O54><,  B62B; CAB@>9AB20 4;O ?5@542865=8O AC4>2  B63C,  E02C; B0@0, ?>44>=K  B65D; 2>74CH=K5 ?>4CH:8 :0: =5ACI85 M;5<5=BK  F16C 29/00) B65G 7/00 #AB@>9AB20 4;O ?5@5?@>:84K20=8O BO65;KE 3@C7>2 (4;O >?@>:84K20=8O 8 2K3@C7:8 45@52O==KE 8;8 G5:  B65G 65/00) B65G 9/00 #AB@>9AB20 A ?>425A=K=>A8B5;O<8, ?5@5428305;L7>20=85=2595@K A ?@82>4>< 2@CG=CN  B65G 17/00; 65;57=>4>@>6=K5 A8AB5<K  B61B) 5;>10; :>=2595@K; :>=AB@C:B82=K5 M;5=2595@>2 >?@545;5==KE B8?>2 (703@C7:0 8;8 @073@C7:0 :>=2595@>2 A ?>ILN CAB@>9AB2, :>=AB@C:B82=> A>?@O65==KE A :>=2595@02 A =8<8  B65G 47/00; ?>3@C7:0 8;8 @073@C7:0  B65G 65/00; MA:0;0B>@K 8;8 4286CI85AO 4>@>6:8  B66B 21/00; :0=0B=>-A:@51:>2K5 :>=2595@K  E02F 3/46) [4] B65G 11/00 5;>10 (8A?>;L7C59AB20E  B65G 1/02,  B65D 88/00; 4;O A?>@B0, 83@ 8;8 @072;5G5=89  A63G 21/00; @>?@>2>4K  E04F 17/00) B65G 13/00 >;L30=38 (CAB@>9AB20 4;O E@0=5=8O A @>;L30=30<8  B65G 1/02; F5?=K5 :>=2595@K A @>;8:0445@6:8 3@C70  B65G 17/00; @>;8:8 8;8 8E @0A?>;>65=85  B65G 39/00; 8A?>;L7C5<K5 2 ?@>:0B=>1>@C4>20=88  B21B 39/00,  B21B 41/00) B65G 13/02 .A 254><K;8:0<8 B65G 15/00 >=2595@K A 15A:>=5G=K=5ACI825@E=>ABO<8, =0?@8<5@ ;5=B0B>@K2>5 CA8;85 ?5@5405BAO 8=K<8 A@54AB20<8, G5=5G=K5 ?@82>4=K5 M;54>1=>9 D>@=5ACI59 ?>25@E=>ABLN, >1@07C59 @O4>< 2708A>548=5==KE M;52  B65G 17/06) B65G 15/08 .A 3@C7>=5ACI59 ?>25@E=>ABLN 2 D>@3=CB>9 8;8 B@C1G0B>9 ;5=BK, =0?@8@B:0 B65G 15/10 .A 42C;55 2708459AB2CNI8=5ACI825@E=>ABO<8 A ?0@0;;5;L=K4>;L=KAO;L:8<8 ?0@0;;5;L=K<8 M;5<5=B0<8, =0?@8<5@ :0=0B03@0=8G820NI8=5ACICN ?>25@E=>ABL B65G 15/30 .;5=BK 8;8 ?>4>1=K5 15A:>=5G=K5 3@C7>=>A8B5;8 (2708459AB2CNI85 A @5;LA0<8 8 B.?.  B65G 21/20; A @>;8:0<8  B65G 39/10; ?@82>4=K5 @5>1I5  F16G) B65G 15/32 ..@578=>2K5 8;8 ?;0AB2K5 B65G 15/60 .CAB@>9AB20 4;O ?>445@6820=8O 8;8 =0?@02;5=8O ;5=B, =0?@8AB8 (:>=AB@C:F88 @>;8:>2 8;8 >?>@ 4;O =8E  B65G 39/00,  F16G) B65G 17/00 >=2595@K A 15A:>=5G=K2K<8 M;5<5=B0<8, =0?@8<5@ F5?O<8, ?5@540NI8=5G=>9 3@C7>=5ACI59 ?>25@E=>AB8 8;8 @O4C >B45;L=KE 3@C7>=>A8B5;59; F5?=K5 :>=2595@K, 2 :>B>@KE F5?8 >1@07CNB 3@C7>=5ACICN ?>25@E=>ABL (65;57=>4>@>6=K5 A8AB52K5 3@C7>=>A8B5;8  B61B; MA:0;0B>@K 8;8 ?0B5@=>AB5@K 157 ?>3@C7>G=>-@073@C7>G=KE CAB@>9AB2  B66B 9/00) B65G 17/06 .A 3@C7>=5ACI59 ?>25@E=>ABLN, >1@07C59 @O4>< 2708A>548=5==KE M;52, =0?@84>;L=KE 725=L52, ?;0AB8= 8;8 ?;>I04>: B65G 17/12 .A =5A:>;L:8=>A8B5;O2;5==K4286=> ?> >B=>H5=8N : BO3>2><C M;5<5=BC B65G 17/16 .A =5A:>;L:8=>A8B5;O ?>425H5==K<8, =0?@815A?5G5=8O A2>1>4=>3> :0G5=8O (=0?@02;ONI85, ?5@52>@0G820NI85AO 8;8 =0:;>=ONI85AO 3@C7>=>A8B5;8 4;O @073@C7:8 :>=2595@>2  B65G 47/34) B65G 17/20 .A 3@C7>=>A8B5;O425H5==K<8 : 25@E=82K< F5?O< B65G 17/30 .:>=AB@C:B82=K5 M;530B5;L=K5 CAB@>9AB20 (:>=2595@=K5 ;5=BK  B65G 15/30; @0<K  B65G 21/00) B65G 17/32 ..>B45;L=K5 3@C7>=>A8B5;8 (@53C;8@>20=85  B65G 17/30) B65G 19/00 >=2595@K A >4=8;L:8<8 M;5<5=B0<K=5G=K2K<8 M;5<5=B0<8 4;O ?5@5<5I5=8O 8745;89 8;8 2 ?> >?>@=>9 ?>25@E=>AB8, =0?@82K5 :>=2595@K B65G 21/00 ?>@=K5 8;8 70I8B=K5 :>=AB@C:F88 8;8 :>6CE8 4;O 3@C7>=>A8B5;59 8 BO3>2KE M;52 ;5=B>G=KE 8;8 F5?=KE :>=2595@>2 (>?>@=K5 :>=AB@C:F88 >A=>20=89 :>=2595@>2 2 F5;><  B65G 41/00) B65G 21/20 .CAB@>9AB20, 2AB@>5==K5 2 >?>@=K5 :>=AB@C:F88 8;8 :>6CE8 8;8 ?@8A?>A>1;5==K5 : =8=>A8B5;59, BO3>2KE M;52 8;8 3@C7>2, ?>445@6820525@E=>ABOE (>?>@=K5 CAB@>9AB20 4;O ;5=B  B65G 15/60; @>;8:8 8;8 @>;8:>2K5 CAB@>9AB20  B65G 39/00,  F16G) B65G 23/00 @82>4K 15A:>=5G=KE :>=2595@>2 (:>=B@>;L=K5 CAB@>9AB20 4;O :>=2595@>2 2>>1I5  B65G 43/00) ; CAB@>9AB20 4;O =0BO65=8O ;5=BK 8;8 F5?8 B65G 25/00 >=2595@K A F8:;8G5A:8 4286CI8<8AO, =0?@872@0B=>-?>ABC?0B5;L=K< 42865=85=>A8B5;O<8 8;8 ?5@5<5I0NI8<8 M;5<5=B0<8 @07J548=O5<K1@0B=>45 (281@0F8>==K5 :>=2595@K  B65G 27/00; =0A>AK  F04) B65G 25/04 .A 3@C7>=>A8B5;O<8 8;8 ?5@5<5I0NI8<8 M;5<5=B0<8, 8<5NI848=0:>2K9 ?@>153 ?@8 ?>ABC?0B5;L=>72@0B=>< 42865=88, =0?@8=2595@K A 2>72@0B=>-?>ABC?0B5;L=K< 42865=85< B65G 27/00 81@0F8>==K5 :>=2595@K (>BA04>G=K5 <0H8=K 4;O :@>3> @0745;5=8O 2  B03B; ?>;CG5=85 8 ?5@540G0 ;510=89  B06; 281@0B>@K 4;O ?@>A5820=8O 8;8 A>@B8@>2:8  B07B 1/28) B65G 27/10 .?@89AB2 4;O ?>;CG5=8O 8;8 ?5@540G8 :>;510B5;L=KE 42865=89 B65G 29/00 >B>@=K5 :>=2595@K (<5E0=8G5A:85 2K1@0AK20B5;8  B65G 31/00; 28=B>2K5 8;8 2@0I0NI85AO A?8@0;L=K5 :>=2595@K  B65G 33/00) B65G 31/00 5E0=8G5A:85 2K1@0AK20B5;8 4;O 8745;89 8;8 B25@4KE 2 (@0A?@545;8B5;8 C4>1@5=89  A01C; D>@2>G=K5 <0H8=K  B22C; ?5A:>AB@C9=K5 0??0@0BK  B24C; 8=AB@C8B5;L=KE @0AB2>@>2  E04F 21/02) B65G 33/00 8=B>2K5 8;8 2@0I0NI85AO A?8@0;L=K5 :>=2595@K (H=5:>2K5 CAB@>9AB20 4;O 2K402;820=8O, A60B8O, AG8E >?5@0F89 A>B25BAB2CNI8E :;0AA0E) B65G 33/08 .4;O 2, E@0=8< B65G 35/00 5E0=8G5A:85 :>=2595@K, =5 >B=5A5==K5 : 4@C38< 3@C??0G=K5 :>=2595@K A 2>72@0B=>-?>ABC?0B5;L=K< 42865=85<  B65G 25/04) B65G 37/00 >=2595@=K5 A8AB51I53> =07=0G5=8O, A>AB02;5==K5 87 :>=2595@>2 >4=>3> 8;8 @07=KE B8?>2 (9AB20  B65G 1/04; A =5A:>;L:8<8 2708459AB2CNI8<8 M;5<5=B0=2595@>2 A 15A:>=5G=K=5ACI825@E=>ABO<8  B65G 15/00; A =5A:>;L:8<8 2708459AB2CNI8<8 A5:F8O=2595@>2  B65G 17/00; ?>A;54>20B5;L=>5 @53C;8@>20=85 A>2 @01>B0NI8E :>=2595@>2  B65G 43/10; A?5F80;L=> ?@8A?>A>1;5==K5 4;O B@0=A?>@B8@>2:8 @048>0:B82=KE 2  G21) >=AB@C:B82=K5 M;530B5;L=K5 CAB@>9AB20 :>=2595@>2; ?>40NI85 8;8 @073@C7>G=K5 CAB@>9AB20, :>=AB@C:B82=> A>?@O65==K5 A :>=2595@0A>1;5==K5 : =8< B65G 39/00 >;8:8, =0?@84=K5, 8;8 @>;8:>2K5 CAB@>9AB20, 2AB@>5==K5 2 @>;L30=38 8;8 2 :>=2595@K (?@82>4=K5 <5E0=87;8:>2 @>;L30=3>2  B65G 13/02; ?@82>4=K5 @>;8:8 4;O ;5=B>G=KE 8;8 F5?=KE :>=2595@>2  B65G 23/00; @0A?>;>65=85 20;:>2 2 ?@>:0B=>1>@C4>20=88  B21B 39/02; D@8:F8>==K5 M;5<5=BK  F16H 55/32) B65G 39/10 .@0A?>;>65=85 @>;8:>2 (=0 >4=>9 >A8  B65G 39/00) B65G 41/00 ?>@=K5 @0=2595@>2, =0?@8A=K5 B65G 43/00 >=B@>;L=K5 CAB@>9AB20, =0?@8E@0=8B5;L=K5, A83=0;L=K5, :>@@5:B8@CNI85 (4;O ?>4J52, MA:0;0B>@>2 8;8 4286CI8EAO 4>@>65:  B66B; :>=B@>;L=K5 CAB@>9AB20 2>>1I5  F16P,  G08B) B65G 43/02 .>1=0@C6820NI85 =0;8G85 =5=>@==KE CA;>289 3@C7>=>A8B5;59, =0?@84 ?@8 ?5@53@525 B65G 43/04 .>1=0@C6820NI85 ?@>1C:A>2:C 4=K< M;5=>A8B5;5<, =0?@84 ?@8 ?@>1C:A>2:5 B65G 43/06 .2K:;NG0NI85 ?@82>4 2 A;CG05 ?>;>4=>3> M;5@7OI85 8;8 >AB0=02;820NI85 A2>1>4=K5 3@C7>=>A8B5;8 B65G 43/08 .@53C;8@CNI85 CAB@>9AB20, C?@02;O540205<K<8, ?5@5<5I05<K<8 8;8 @073@C605<K<8 8745;8O<8 8;8 <0B5@80;0<8 B65G 43/10 .4;O ?>A;54>20B5;L=>3> @53C;8@>20=8O A>2 @01>B0NI8E :>=2595@>2 B65G 45/00 #AB@>9AB20 4;O AA01;820=85 @>;8:>2KE <CDB 4;O G8AB:8 @5<=59  B65G 39/00) B65G 47/00 #AB@>9AB20 4;O 20=8O 8745;8O<8 8;8 <0B5@80;0=AB@C:B82=> A>?@O65==K5 A :>=2595@0A>1K 8A?>;L7>20=8O B0:8E CAB@>9AB2 (4;O A>@B8@>2:8, =0?@8GB>2>9 :>@@5A?>=45=F88,  B07C) B65G 47/02 .CAB@>9AB20 4;O ?>40G8 8745;89 8;8 2 : :>=2595@0< B65G 47/04 ..8745;89 B65G 47/12 ...87 :CG8 E@0=8< 8745;89 B65G 47/14 ....@07@85=B0F8O 8745;89 ?@8 ?>40G5 A ?>ILN <5E0=8G5A:8E 8;8 ?=529AB2 (2 ?@>F5AA5 ?5@5 :>=2595@C  B65G 47/24,  B65G 47/26) B65G 47/22 .CAB@>9AB20, 2;8ONI85 =0 >B=>A8B5;L=>5 ?>;>65=85 8;8 @0A?>;>65=85 8745;89 2 ?@>F5AA5 ?5@5 :>=2595@C (?@8 ?>40G5  B65G 47/14) B65G 47/24 ..>@85=B0F8O 8745;89 B65G 47/26 ..@07<5I5=85 8745;89, =0?@8<5@ 87<56CB:0 B45;L=K<8 8745;8O20=85 8;8 @071>@:0 HB015;59  B65G 57/00,  B65G 59/00,  B65G 61/00) B65G 47/28 ...2 ?@>F5AA5 ?5@5 >4=>=2595@C B65G 47/30 ...2 ?@>F5AA5 ?5@5 =5A:>;L:8=2595@0< B65G 47/31 ....?CB5< 87B=>A8B5;L=KE A:>@>AB59 ?5@5 :>=2595@0< B65G 47/34 .CAB@>9AB20 4;O @073@C7:8 8745;89 8;8 2 A :>=2595@>2 ( B65G 47/24 8<55B ?@58; A>@B8@>2:0  B07) B65G 47/46 ..A @0A?@545;5=85<, =0?@8<0B8G5A:8 <5AB0< =07=0G5=8O (2 A8AB5<0E ?=529 ?>GBK  B65G 51/00; A>@B8@>2:0 ?>GB>2>9 :>@@5A?>=45=F88 8 B.?.  B07C) B65G 47/48 ...A>3;0A=> =0=5A5==K=>A8B5;8 2:0< A C:070=85< <5AB0 =07=0G5=8O (2:0 40==KE 70?8A59  G06K) B65G 47/50 ...A>3;0A=> A83=0;0 ?;5==KB45;L=KE A8AB53@0<5 C?@02;5=85  G05B 19/00) B65G 47/51 ...A>3;0A=> =570?@>3@0<20==K< A83=0;0<, =0?@87=8:0NI8< 2 7028A8AB8 >B A>AB>O=8O ?>40G8 =0 @K 4;O 871J5@>AB8 ?>B>:0 8 C@>2=O 684:>AB59  G01F; 25AK 8;8 CAB@>9AB20 4;O 2725H820=8O  G01G; 48AB0=F8>==>5 C?@02;5=85  G05G) B65G 47/52 .CAB@>9AB20 4;O ?5@540G8 8745;89 8;8 2 A >4=>3> :>=2595@0 =0 4@C3>9 (?>3@C7:0 8;8 @073@C7:0 A ?>ILN CAB@>9AB2, :>=AB@C:B82=> =5 A>?@O65==KE A :>=2595@0<8,  B65G 65/00; ?>40G0 >1@010BK205F5AA5 ?@>:0B:8 <5B0;;0  B21B 41/00) B65G 47/53 ..<564C ?5@5A5:0NI8=2595@0<8 [3] B65G 47/56 ..=2595@0==K< 8;8 25@B8:0;L=K;>65=85< A5:F89 B65G 47/60 ..=2595@0425A=>3>, =0?@8;;59=>3> B8?0 B65G 47/64 ..?5@5:;NG5=85 :>=2595@>2 B65G 47/66 ..=5?>4286=K5 ?;0BD>@<K, =0?@8<5@ AB8:8, @0A?>;0305<K5 =2595@0<8 B65G 47/68 ..4;O ?@85ABC?0NI8E A;>54=>3> :>=2595@0, 8 ?5@540G8 8E >B45;L=KO;L:> :>=2595@>2 8;8 =0>1>@>B B65G 47/70 ...A ?@54H5AB2CNI820=85B>:0 ?>ABC?0NI8E 8745;89 B65G 47/72 ..4;O ?5@540G8 2, E@0=84=>3> :>=2595@0 =0 =5A:>;L:> :>=2595@>2 8;8 =0>1>@>B B65G 47/74 .?>40NI85, ?5@540NI85 8;8 @073@C7>G=K5 CAB@>9AB20 B65G 47/78 ..65;>10 A @073@C7>G=KB25@AB8O@0<8 B65G 47/80 ..?>2>@>B=K5 ?;0BD>@<K, =5ACI85 8745;8O 8;8 4;560I85 ?5@540G5, =0?@820==K5 A A>H=8:0<8 8;8 A:@51:0<8 B65G 47/82 ..M;5<5=BK A 2@0I0NI872@0B=>-?>ABC?0B5;L=K< 42865=85A@54AB25==> 2>7459AB2CNI85 =0 8745;8O 8;8 <0B5@80;K, =0?@8;:0B5;8, A:@51:8, ;>?0BK B65G 47/84 ..72574>G:8 8;8 CAB@>9AB20 A 15A:>=5G=K4286=K<8 ;5=B0<8 8;8 F5?O<8, A=0165==K<8 M;5<5=B0<8, 70E20BK20NI8<8 8745;8O B65G 47/86 ...A 70E20B0<8 B65G 47/88 ..@0745;ONI85 8;8 >AB0=02;820NI85 M;5<5=BK, =0?@8G:0E  B65G 47/84) B65G 47/90 ..CAB@>9AB20 4;O 872;5G5=8O 8 >B:;04K20=8O 8745;89 8;8 2 B65G 47/91 ...A ?=52<0B8G5A:8<8, =0?@8<5@ ?@8A0AK20NI8<8 70E20B0<8 B65G 47/92 ...A M;5:B@>AB0B8G5A:8<8 8;8 <03=8B=K<8 70E20B0<8 B65G 49/00 !8AB5=2595@>2 A?5F80;L=>3> =07=0G5=8O, =5 >B=5A5==K5 : 4@C38< 3@C??0< (4;O ?5@52>3> <0B5@80;0  B65H) B65G 49/05 .4;O E@C?:8E 8;8 ;53:>?>2@56405<KE 2 8;8 8745;89 [4] B65G 49/07 ..4;O ?>;C?@>2>4=8:>2KE ?;0AB8= (A?5F80;L=> ?@54=07=0G5==K5 4;O B@0=A?>@B8@>2:8 8;8 >1@01>B:8 ?>;C?@>2>4=8:>2KE 8;8 M;5:B@8G5A:8E ?@81>@>2 =0 B25@4>=5=B>2  H01L 21/67) [5,8] 5@B8@>2:0 ?> B@C10< (A8AB5?@>2>4>2  F17D) ; B@0=A?>@B8@>2:0 ?> 65;>10;L7разделы macintosh герб область дюпон краска цвет камуфлир карл гиря альтернативный медицина автошкола мужчина выходной рак простата скребковый конвейер билет мхат укв радиосвязь summer кухонный прайс зеркало затенение витрина кулер регулируемый изготовление презентация asus p505 травертин кайт пилотажный цвет гармония фризер степ-аэробика компания доминике поставка тройник купить автотехнику вино заказ дирижабль renu multiplus 355мл санфаянс акриловый вкладыш альтернативный медицина вызов врач фризер бак накопитель скрипт рассылка объвлений рукавичка доставка доставка дров купить пароварка снос любой конструкция флаг заказ софт автошкола kiev apartments service антиобледенительные система клеить 88 люкс геомаш-центр микросреда компания электрокамин dimplex model magic (sp8) встраиваемый вытяжка бахила оптом гнб кайт серфинг маска косметический маска косметический газонокосилка dolmar газонокосилка dolmar dunlup 205 55 r16 5440.16 (крышка) генерация кислорода купить ниппель радиат mobil gargoyle mobil gargoyle mobil gargoyle mobil gargoyle mobil gargoyle mobil gargoyle пассажирский лифт корвет-телеком эрозия шейка матка купить архиватор сервер hp лидо пекарня заказать флаг sharp ar-m205 герб рф маркировочная краска стеклянный перегородка шелкография бюро переводчик kiev apartaments rent 100 девчонка одна лифт купить k800i лидо пекарня лечение алкоголизма сушильный машина asko 5003.17 (крышка) лечение алкоголизма заказать флаг вино заказ газонокосилка black decker ppg краска пассажирский лифт купить хлебопечку нейминг флаг башня холодильный камера система видеоконференция футбольный тотализатор купить nokia 9300i рассылка переработка резина варочный поверхность hansa шарошка алмазный гайковерт электрический глюкозамин-хондроитиновый комплекс холодильник бош купить актуатор купить актуатор купить актуатор купить актуатор купить актуатор nokia 6021 купить мультиметры цифровой детский гинеколог mobilux заказать микроавтобус фмс ром доставка ванна моечный лечение алкоголизма организовать рассылка снегоход буран бензопила stihl сборный доставка пошив корпоративный костюм время владимир автоматический оповещение александр вертинский. желтый танго lida кбе protherm антенна бустер бегущий строка калибровка цвет контакт контактор российский флаг contiwinterviking купить ночной очки бесплатный нард внешний антенна застежка zip-lock нестандартный коробка слимент лифт циклон сцн-40 холодильник уценка медикаментозный прерывание беременность хосе карерас билет рак простата резка продать кайт диагностический стенд черный кофе купить ломтерезку скребковый конвейер