пломбирование

яю /***************************************************************************** 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/ipc8_htm.htm','') oCMenu.makeMenu('top1','',' @0745;','http://www.fips.ru/ipc8/htm/ipc8-subclass-A_XML/ipc8-class_A.htm') oCMenu.makeMenu('top2','',' :;0AA','http://www.fips.ru/ipc8/htm/ipc8-subclass-A_XML/ipc8-subclass_A61.htm') oCMenu.makeMenu('top3','','','http://www.fips.ru/ipc8/htm/ipc8-subclass-A_XML/ipc8-A61C.htm#top') oCMenu.makeMenu('top5','','','http://www.fips.ru/ipc8/htm/ipc8-subclass-A_XML/ipc8-A61C.htm#end') //Leave these two lines! Making the styles and then constructing the menu oCMenu.makeStyle(); oCMenu.construct() A61C - !B>;>38O; 38385=0 ?>;>AB8 @B0 8 CE>4 70 7C10<8 (7C1=K5 I5B:8  A 46B; AB>;>38G5A:85 ?@5?0@0BK  A 61K 6/00) !>45@60=85 ?>4:;0AA0    # #  1/00 - 8/00 #  "   9/00 - 13/00 '!" #  !" "  15/00 17/00 # '+ !",+   +   !!/  19/00 ;>20=85 8 C40;5=85 7C1>2 A61C 1/00 C1>2@0G51=K5 20=8O (1>@<0H8=K) A61C 1/02 .>B;8G0NI85AO ?@82>4>< A61C 1/04 ..A =>6=K< 8;8 @CG=K4>< A61C 1/05 ..A BC@1>?@82>4>< A61C 1/06 ..A M;5:B@>?@82>4>< A61C 1/07 ..A 281@0F8>==K4><, =0?@82K< A61C 1/08 .45B0;8 7C1>2@0G51=KE <0H8= A61C 1/10 ..?@O=5G=8:8 A61C 1/12 ..C3;>2K5 =0:>=5G=8:8 A61C 1/14 ..45@60B5;8 4;O 8=AB@C2 A61C 1/16 ..70I8B=K5 DCB;O@K 4;O ?@O2KE =0:>=5G=8:>2 A61C 1/18 ..381:85 20;K; >1I5  F 16C; >1I5  F 16D) A61C 3/00 C1>2@0G51=K5 ?@81>@K 8;8 8=AB@C<5=BK (8=AB@C<5=BK 4;O 8<?;0=B0F88  8/00; 8=AB@C2  13/12; CAB@>9AB20 4;O 287C0;L=>3> >AB@0, =0?@82@0G51=K5 75@:0;0  A 61B 1/24) A61C 3/02 .8=AB@C20=8O, H;8D>20;L=K5 8=AB@C<5=BK A61C 3/025 ..8=AB@C ?@8=F8?C ?5A:>AB@C9=>9 <0H8=K, =0?@820=8O 8;8 ?>4@570=8O 7C1>2 [5] A61C 3/03 ..8=AB@C<5=BK, C?@02;O5A@54AB2>< 281@0F88 A61C 3/04 .45@60B5;8 4;O =01>@>2 7C1>2@0G51=KE A25@; A61C 3/06 .48A:8 4;O H;8D>20=8O 8;8 ?>;8@>20=8O 7C1>2; 45@60B5;8 4;O =8E A61C 3/08 .HB>?D5@K 8 ;>B>G:8 A61C 3/10 .?8=F5BK 8 B.?. A61C 3/12 .7C1>2@0G51=K5 ?8;K A61C 3/14 .I8?FK 8 B.?. 4;O M:AB@0:F88 7C1>2 A61C 3/16 .I8?FK 4;O C40;5=8O :>@>=>: A61C 5/00 ;>20=85 7C1>2 8 =04520=85 :>@>=>: A61C 5/02 .?@8A?>A>1;5=8O 4;O E8@C@38G5A:>9 >1@01>B:8 :>@=59 7C1>2 8;8 M:AB@0:F88 7C1=KE =5@2>2; 83;K 4;O M:AB@0:F88 7C1=KE =5@2>2; A?>A>1K 8;8 8=AB@C@=59 (A>AB02K 4;O E89 >1@01>B:8  A 61K 6/00) A61C 5/04 .?@8A?>A>1;5=8O 4;O ?;>20=8O 7C1>2; A?>A>1K 8;8 8=AB@C2 (A>AB02K 4;O ?;><1  A 61K 6/02) A61C 5/06 .?@5AAK 8 A<5A8B5;8 4;O 0<0;L30< A61C 5/08 .7C1=K5 :>@>=:8, 8E 873>B>2;5=85; :@5?;5=85 :>@>=>: 2> @BC (7C1=K5 8<?;0=B0BK  8/00) A61C 5/09 ..:>20==K5 :>@>=:8 [5] A61C 5/10 ..A?>A>1K 8 CAB@>9AB20 4;O 873>B>2;5=8O :>@>=>: [5] A61C 5/11 ..:@5?;5=85 :>@>=>: : 5AB5AB25==K< 7C10< [5] A61C 5/12 .7C1=K5 :;0DD5@40<0 A61C 5/14 .?@54>E@0=8B5;8 4;O 3C1 8;8 ?>;>AB8 @B0 A61C 7/00 @B>4>=B8O, B.5. ?>;CG5=85 8;8 A>E@0=5=85 65;053> ?>;>65=8O 7C1>2, =0?@8<5@ 2K?@O<;5=85<, 2K@02=820=8520=85<, @0745;5=85< 8;8 8A?@02;5=853> ?@8:CA0 A61C 7/02 .8=AB@C<5=BK 4;O 20=8O 8;8 @01>BK A CAB@>9AB20@B>4>=B88 [5] A61C 7/04 ..B8?0 :;5I59 [5] A61C 7/06 .?@8A?>A>1;5=8O 4;O ?5@540G8 CA8;8O, @0A?>;>65==K5 2=5 @B0, A M;54OI8 @BC [5] A61C 7/08 .45@60B5;8 3> B8?0 [5] A61C 7/10 .CAB@>9AB20 A> A@54AB2065=8O CA8;8O, =0?@02;5==>3> =0@C6C, =0?@8<5@ @0AH8@8B5;8 [5] A61C 7/12 .A:>1K; ?@8A?>A>1;5=8O 2 2845 ?@>2>;>G=KE 4C3; 8E :>30B5;L=K5 ?@8=04;56=>AB8 4;O =8E ( 7/10 8<55B ?@58) [5] A61C 7/14 ..A:>1K ( 7/28 8<55B ?@58) ; ?@8:@5?;5=85 A:>1 : 7C10< [5] A61C 7/16 ...A?5F80;L=> ?@54=07=0G5==K5 4;O :@5?;5=8O A ?>ILN 2O6CI8E 25I5AB2 [5] A61C 7/18 ...A?5F80;L=> ?@54=07=0G5==K5 4;O D8:A8@>20=8O =0 7C10E A ?>ILN ABO65:; ABO6:8 4;O MB>9 F5;8 [5] A61C 7/20 ..?@8A?>A>1;5=8O 2 2845 ?@>2>;>G=KE 4C3 ( 7/28 8<55B ?@58) [5] A61C 7/22 ...A@54AB20 4;O @53C;8@>20=8O =0BO65=8O [5] A61C 7/24 ...A =0?@02;ONI8<8 4;O =8E [5] A61C 7/26 ...A@54AB20 4;O :@5?;5=8O [5] A61C 7/28 ..:@5?;5=85 ?@>2>;>G=KE 4C3 : A:>15 [5] A61C 7/30 ...A ?>ILN C?@C38E 8;8 M;0AB8G=KE ?@8A?>A>1;5=89 ( 7/34 8<55B ?@58) [5] A61C 7/32 ...A 8A?>;L7>20=852>;>:8 [5] A61C 7/34 ...A 8A?>;L7>20=852 [5] A61C 7/36 .CAB@>9AB20, 459AB2CNI85 <564C 25@E=8<8 8 =86=8<8 7C10<8 [5] A61C 8/00 @8A?>A>1;5=8O, ?@8:@5?;O52 8;8 4;O :@5?;5=8O 7C1=KE ?@>B57>2; 7C1=K5 8<?;0=B0BK; 8=AB@C<5=BK 4;O 82KE 7C1>2 2> @BC  13/30) [2] A61C 8/02 .A@54AB20 4;O D8:A0F88 5AB5AB25==KE 7C1>2 [4] @>B578@>20=85; 8A:CAAB25==K5 7C1K (AB>;>38G5A:85 ?@5?0@0BK  A 61K 6/00) [3] A61C 9/00 BB8A:>2K5 ;>6:8; A?>A>1K ?>;CG5=8O >BB8A:>2 [3] A61C 11/00 '5;NAB=K5 0@B8:C;OB>@K, B.5 0@B8:C;OB>@K 4;O 2>A?@>872545=8O 42865=8O 28A>G=>-G5;NAB=KE ACAB02>2; 0@B8:C;OF8>==K5 45;8 8;8 >B;82:8 A61C 11/02 . >B;8G0NI85AO CAB@>9AB2><, @07<5I5=85A>1;5=89 4;O =025H820=8O [5] A61C 11/04 ..A C?@C38< A<5I5=85< [5] A61C 11/06 .A =0?@02;ONI59 ?@>@57LN [5] A61C 11/08 .A> A@54AB202 : 0@B8:C;OB>@C [5] A61C 13/00 C1=K5 ?@>B57K; 8E 873>B>2;5=85 (7C1=K5 :>@>=:8 4;O =04520=8O =0 7C1K  5/08; 7C1=K5 8<?;0=B0BK  8/00) [4] A61C 13/003 .?@>B57K 157 1078A0, =0?@8<5@ ABK (:@5?;5=85 ?@>B57>2 2> @BC  13/225) ; 8E 873>B>2;5=85 (8A:CAAB25==K5 7C1K  13/08) [6] A61C 13/007 .?@>B57K A 1078A0<8, =0?@8<5@ A =51=K<8 ?;0AB8=:0B>2;5=85 [6] A61C 13/01 ..1078AK [4] A61C 13/02 ...873>B02;8205A>10?;0AB8:8; >1@01>B:0 8E ?>25@E=>AB8; M20=85; 0@>20=85; 0=B8A5?B8G5A:0O >1@01>B:0 [4] A61C 13/03 ...<5B0;;8G5A:85 A :5@0<8G5A:85< [6] A61C 13/06 ...873>B>2;5==K5 HB02:>9 [4] A61C 13/07 ..?>:@KB8O 8;8 ?@>:;04:8 4;O =8E (E0@0:B5@87C5A>1;5=8O<8 4;O C;CGH5=8O ?@8A0AK20=8O  13/24) [6] A61C 13/08 .8A:CAAB25==K5 7C1K 8 8E 873>B>2;5=85 (?5G8 4;O >16830 8A:CAAB25==KE 7C1>2  F 27B) A61C 13/083 ..D0@D>@>2K5 8;8 :5@0<8G5A:85 7C1K [4] A61C 13/087 ..8A:CAAB25==K5 :0CGC:>2K5 7C1K [4] A61C 13/09 ..3>A;>9=K5 7C1K [4] A61C 13/093 ..>B;8G0NI85AO D>@9, C;CGH0NI59 @5B5=F8N [4] A61C 13/097 ..>B;8G0NI85AO >::;N78>==KD8;5< [4] A61C 13/10 .:@5?;5=85 8A:CAAB25==KE 7C1>2 : 8A:CAAB25==><C <0B5@80;C, =0?@8<5@ : =51=K< ?;0AB8=:0A54=5<C 7C1C ( 13/093 8<55B ?@58; :@5?;5=85 ?@>B57>2 2> @BC  13/225) [6] A61C 13/103 ..:>340 ?@8A>548=5=85 : 1078A=><C ACI5AB2;O5BAO 70 AG5B 4>?>;=8B5;L=>3> A>548=8B5;L=>3> M;5<5=B0, =0?@8<5@ 2KABC?0 8;8 AB5@6=O [6] A61C 13/105 ...A A>548=8B5;L=K< M;5<, 703;C1;5==K< 2 1078A=K9 <0B5@80; [6] A61C 13/107 .?@>B57K 4;O 2@53> 2>AAB0=>2;5=8O; 25AB81C;O@=K5 =0:;04:8 [4] A61C 13/113 .?>43>=O5B57K, =0?@8;L7CNI85 70@0=55 873>B>2;5==K5 1078AK 8;8 3>B>2K5 :>2 [4] A61C 13/12 .8=AB@C2; 45@60B5;8, :;09:8 4;O 8A:CAAB25==KE 7C1>2 A61C 13/14 .CAB@>9AB20 4;O 2C;:0=870F88 ?@>B57>2 87 ?;0AB<0AA A61C 13/15 ..?>4 2>7459AB285< A25B0 [6] A61C 13/16 ..:>;1K 8;8 ?>4>1=K5 A>AC4K 4;O 2C;:0=870F88; 45@60B5;8 4;O =8E A61C 13/18 ..?@868A>1;5=8O 4;O :>;1 A61C 13/20 .A?>A>1K 8;8 CAB@>9AB20 4;O ?09:8, ;8BLO, D>@20=8O 8;8 ?;02;5=8O [4] A61C 13/225 .:@5?;5=85 ?@>B57>2 2> @BC (:@5?;5=85 7C1=KE :>@>=>: 2 70:@K205<KE 7C10E  5/08; 1078AK 4;O ?@>B57>2  13/01) [4] A61C 13/23 ..A 8A?>;L7>20=85==KE ?;5=>: 8;8 043578>==KE A>AB02>2 ( 13/263 8<55B ?@58) [4] A61C 13/235 ..5 :@5?;5=85 (<03=8B=K5 8<?;0=B0BK  8/00) [4] A61C 13/24 ..:@5?;5=85 ?CB5< ?@8A0AK20=8O A61C 13/25 ...A 8A?>;L7>20=8574CH=>3> :0=0;0, ?@>E>4OI53> >B >1;0AB8 >BA0AK20=8O 4> ;8=320;L=>9 ?>;>AB8 [6] A61C 13/263 ..228=G820=85, HB8DB>2:0 8;8 ?@8:;5820=85 ?@>B57>2 : 5AB5AB25==K< 7C10< [4] A61C 13/265 ..A:>;L7OI85 8;8 70I5;:820NI85AO ?@8A?>A>1;5=8O (0B0G<5=K) [4] A61C 13/267 ..702K5 :@5?;5=8O [4] A61C 13/271 ..C?@C3>5 :@5?;5=85 : 5AB5AB25==K< 7C10< 8;8 <564C =8<8 [4] A61C 13/273 ..?@8AB53820=85 ?@>B57>2 : >AB02H8<AO 7C10ILN 2@0I0NI8EAO 8;8 A:>;L7OI8E 70B2>@>2 8;8 0=:5@>2 ( 13/265, 13/277 8<5NB ?@58) [4,6] A61C 13/275 ..:@5?;5=85 ?@>B57>2 A ?>ILN AB>284=KE ?;0AB8= 8;8 ?>;>A>: AB02H8<8AO 7C10<8 [4] A61C 13/277 ..B5;5A:>?8G5A:>5 0=:5@=>5 :@5?;5=85 [4] A61C 13/28 ..:@5?;5=85 70 AG5B ?@C68=OI53> 459AB28O <564C 25@E=8<8 8 =86=8<8 G0ABOB57>2 A61C 13/30 ..:@5?;5=85 HB8DB>2KE 7C1>2 2> @BC; :>@=52K5 HB8DBK [4] A61C 13/32 ..?>G8=:0 ?@>B57>2 [4] A61C 13/34 .873>B>2;5=85 8;8 >1@01>B:0 45;59, =0?@8B;82>:, ?@>1=KE ?@>B57>2; >?>@=K5 HB8DBK [4] A61C 13/36 ..>@85=B8@>20=85 8;8 CAB0=>2:0 8A:CAAB25==KE 7C1>2, =0?@8?@545;5=85 8E B>G=>3> ;>65=8O [6] A61C 13/38 .8=AB@CB=5A5==K5 : 4@C384:;0AA0;L7C53> ?@>B578@>20=8O 8;8 873>B>2;5=8O ?@>B57>2 (8=AB@C<5=BK 4;O 8<?;0=B0F88  8/00) [6] #AB@>9AB20 4;O G8AB:8 7C1>2 8 ?>;>A:0=8O @B0 (7C1=K5 I5B:8 157 ?@82>40  A 46B; A@54AB20 4;O G8AB:8 7C1>2 8;8 ?>;>AB8 @B0  A 61K 8/00,  A 61Q 11/00) [3,5] A61C 15/00 #AB@>9AB20 4;O G8AB:8 2 A61C 15/02 .7C1>G8AB:8 [4] A61C 15/04 .7C1=K5 =8B8; 45@60B5;8 4;O =8E [4] A61C 17/00 #AB@>9AB20 4;O G8AB:8, ?>;8@>20=8O, ?@>ACH5=8O 7C1>2, 7C1=KE ?>;>AB59 8;8 ?@>B57>2 (8=AB@C ?@8=F8?C ?5A:>AB@C9=>9 <0H8=K  3/025; 48A:8 4;O ?>;8@>20=8O 7C1>2 8;8 45@60B5;8 4;O =8E  3/06; CAB@>9AB20 4;O G8AB:8 2  15/00) ; ?@8A?>A>1;5=8O 4;O C40;5=8O A;N=K; 7C1>2@0G51=K5 ?@8A?>A>1;5=8O 4;O A?;52K20=8O [5] @8<5G0=85'8AB:0 ?@>B57>2 A 8A?>;L7>20=854>1=0O G8AB:5 5AB5AB25==KE 7C1>2, :;0AA8D8F8@C5BAO 2 MB>9 3@C??5. @C385 284K C;LB@072C:>2>9 G8AB:8 ?@>B57>2 :;0AA8D8F8@CNBAO 2 @C1@8:5  B 08B 3/12. [5] A61C 17/02 .?@>74CE>4C2=K5 CAB@>9AB20, =0?@820==K5 A ?@8A?>A>1;5=8O<8 4;O A?;52K20=8O  17/14; :>20==K5 A CAB@>9AB20;8@>20=8O A <5E0=8G5A:84><  17/16) [5] A61C 17/022 ..2>74CE>4C2=K5 CAB@>9AB20 [5] A61C 17/024 ..A ?>AB>O==KB>:>AB8 [4] A61C 17/028 ..A ?@5@K28ABKB>:>AB8 [4] A61C 17/032 ..A 2>4>2K?CA:>4 402;5=85< [4] A61C 17/06 .?@8A?>A>1;5=8O 4;O C40;5=8O A;N=K; 2A?>30B5;L=K5 M;5<5=BK 4;O =8E [5] A61C 17/08 ..>BA0AK20NI85 =0A04:8 [5] A61C 17/10 ..A @0A?>@:0@0<8 4;O O7K:0, H?0B5;O<8 4;O ?@868<0=8O O7K:0, @0AH8@8B5;O2K9AB20 4;O >B:@K20=8O @B0 :0: B0:>2K5  A 61B 1/24; ?@8A?>A>1;5=8O 4;O ?@868<0=8O O7K:0  A 61B 13/00) [5] A61C 17/12 ..CAB@>9AB20 4;O C?@02;5=8O, =0?@8BA0AK20=85< [5] A61C 17/14 .7C1>2@0G51=K5 ?@8A?>A>1;5=8O 4;O A?;52K20=8O A ?@8A?>A>1;5=8O;>A:0=8O 8;8 157 =8E, 20==>G:8, ?;520B5;L=8FK [5] A61C 17/16 .CAB@>9AB20 4;O G8AB:8 8;8 ?>;8@>20=8O A ?@82>4>< [5] A61C 17/18 ..8=AB@C3> :0ILN 7C1=>3> 4>;>B0 ( 17/20 8<55B ?@58) [5] A61C 17/20 ..A 8A?>;L7>20=85< C;LB@072C:0 [5] A61C 17/22 ..A ?>ILN I5B>:, ?>4CH5G5:, G0H5G5: 8 B.?. (I5B:8, =0?@8<5@ @07<5I5=85 I5B8=K  A 46B) [5] A61C 17/24 ...A =5?@5@K2=K< 2@0I5=85< ( 17/40 8<55B ?@58) [5] A61C 17/26 ....?@82>4842830B5;5< [5] A61C 17/28 .....A ?@8A?>A>1;5=8O<K20=8O [5] A61C 17/30 ....?@82>48<K5 2 42865=85 384@02;8G5A:8< 42830B5;5<, =0?@84O=K< [5] A61C 17/32 ...A 2>72@0B=>-?>ABC?0B5;L=K;510B5;L=K< 42865=85< [5] A61C 17/34 ....?@82>4842830B5;5< [5] A61C 17/36 .....A ?@8A?>A>1;5=8O<K20=8O [5] A61C 17/38 ....?@82>48<K5 2 42865=85 384@02;8G5A:8< 42830B5;5< [5] A61C 17/40 ...A>25@H0NI85 42865=85 ?> >@18B5, =0?@8==>5 [5] A61C 19/00 C1>2@0G51=K5 2A?>30B5;L=K5 ?@81>@K 8 ?@8A?>A>1;5=8O (7C1>2@0G51=K5 :@5A;0 8 ?@8=04;56=>AB8 : =8G85 AB>;K A 7C1>2@0G51=K<8 :@5A;0<8 8;8 157 =8E  A 61G 15/00) A61C 19/02 .G5E;K, DCB;O@K, =0?@8<5@ OI8:8 4;O 8=AB@C2; AC<:8 4;O 8=AB@C2 A61C 19/04 .7C1>2@0G51=K5 87@K (4803=>AB8:0 A ?>ILN @5=B35=>A:>?8G5A:>3> >1A;54>20=8O  A 61B 6/00) A61C 19/045 ..4;O 70?8A8 42865=8O G5;NAB59, =0?@8<5@ ;8F52K5 4C38 [5] A61C 19/05 ..4;O >?@545;5=8O >::;N788 [5] A61C 19/055 ..CAB@>9AB20 4;O A8=E@>=870F88 42865=89 [5] A61C 19/06 .?@8A?>A>1;5=8O 4;O B5@0?52B8G5A:>3> ;5G5=8O 7C1>2 (@5=B35=>B5@0?8O  A 61N 5/00) A61C 19/08 ..2 A>G5B0=88 A ?@8A?>A>1;5=8O1571>;820=8O (7C1>2@0G51=K5 8=J5:F8>==K5 H?@8FK  A 61M 5/00) A61C 19/10 .?>4AB02:8 4;O ?5@5=>A:8 8A:CAAB25==KE 7C1>2 8;8 4;O A@02=5=8O 8E >:@0A:8 разделы лечение головокружение фасадный покрытие эдас-134 аденома предст.ж-зы очки защитный рассылка отчетность пбоюл мачта флагшток доставка ноутбук французский вина надевание бахила бензопила импортный трубогиб дорном искать фотограф маска косметический контакт контактор время ярославль светлогорск волосовский доломит сборщик долг микросреда компания хлеборезка ахм переработка резина дренаж надевание бахила купить ножовка купить пк мини пекарня пазл центральный детский мир детский мир охота лис вечерний платье флюрисцентная краска надпись кружок подшипниковый узел ariston опт измеритель фаза нуль автоматический резка дермато-венеролог тестоделитель промышленый альпинизм sky link пионовая беседка враждебный поглощение архыз вымпел заказ корпоративный иностранный эрозия шейка матка антенна акустомагнитные концентрирование кислорода укрепление откос асбест а7-450 трубогиб дорном против рак купить пк химчистка доставка купить ниппель de luxe 5040.11 конвейер апгрейд обезьяна контакт контактор внутренний перегородка диспорт московский флаг 1000 холодильник автоинформатор крутой xxx видео урок охота срок реализация рак предохранитель пкт доставка кулеров mastercard кострома коммерческий эфирный антенна kaasi сейфовые ячейка силуэт слименд лифт штендеры ичп пбоюл генерация кислорода аденома тренировка память система дымоудаления организация видеоконференция грунт заказ обед разогреть вчерашний обед зал аэробика катушка контактор рак простата валерий билет фосфоресцирующий краска укв радиосвязь электроинструмент метабо автобетононасосы telecomfm gsmphone травертин купить конвертер omega o2 optix детский мир wow организация похорон сэндвич кофе-бар швейцария культура туба машина сейфовые ячейка время кострома lucent definity асбест хризотиловый кулер бесшумный передвижной сварочный агрегат герб область вагонка половой доска shimadzu вино заказ холодный обзвон надпись кружок охота пиранья sharp ar-m205 электросчетчик гамма i`m o.k./герои гроб чиллеры флажок настольный короткий нард скачать бесплатный варочный поверхность cata система дымоудаления ночной очки масло облепих.концентрат организовать рассылка ротационный rvg полиолефиновая пленка тонирование авто узи обед винный холодильник лучший ковры организовать рассылка избавиться спам цвет ламината класс 32 hi-fi билет задорнов поставка тройник перех плазменный панель настенный охота быкова купить угольник перех ваза 2114 выделенка консультирование организация дермато-венеролог подводный гидромассаж надпись кружок фейрверк праздник эдас-134 аденома предст.ж-зы разогреть вчерашний обед катетер срок реализация рак зеркало багуа срезанный цвет путевой стена купить fifa 2006 зал аэробика крутой компания доставка ноутбук телефонный анкетирование mobilux герб вышивка рассылка база данный кайт пилотажный заказать обед 5004.10 (крышка) кассовый машина ларсен центр лидо пекарня эксимер лазер kiev apartaments service кислород оркестр креольский танго корпоративный обслуживание заказать флаг оповещение mobil pegasus наркомания мелованный бумага лечение щитовидный железа пломбирование