На главную страницуНаписать письмоКарта сайта

Нестеренко Виктор Геннадьевич, главный редактор журнала "НефтьГазПраво" Глухова Н.В., начальник лаборатории экономической эффективности освоения морских месторождений, Центр разработки морских нефтегазовых месторождений ООО "ВНИИГАЗ" Смирнов Александр, cтарший менеджер налогового отдела компании "Эрнст энд Янг" Кокин Виталий Николаевич, представитель компании "Норск Гидро" по связям с правительством и промышленностью


6'2003

А.Н.ГОЛОМОЛЗИН. Энергетическая стратегия России до 2020 г. и конкурентный рынок газа

Б.Д.КЛЮКИН. О развитии договорной основы права пользования недрами

Н.А.НЕЧИПОРЧУК. О порядке исчисления акцизов по нефтепродуктам с 1 января 2003 г.

18-21 ноября 2003 г. состоялся ежегодный форум юристов ТЭК России и других государств СНГ

5'2003

В.П.ОРЛОВ. Чиновники ищут "индивидуальный подход" к нефтяным компаниям

В.ШКОЛЬНИК. Экологические аспекты Государственной Программы освоения и развития КСКМ

Рекомендации парламентских слушаний "Актуальные вопросы взаимодействия органов государственной власти в отношении недр"

А.БАРДИН. Состояние и перспективы развития законодательства о СРП в России

4'2003

И.Ф.ГЛУМОВ. Создание федерального реестра параметрических и поисково-разведочных буровых скважин

В.Л.ТКАЧЕВА. Юридические аспекты системы интеграционного трубопроводного транзита

Рекомендации парламентских слушаний "Законодательство РФ о недрах и недропользовании: актуальные проблемы"

М.В.ГОРЕТЫЙ. Правовое обеспечение доступа малых нефтедобывающих предприятий к трубопроводному транспорту и объектам инфраструктуры

3'2003

П.В.САДОВНИК. Законодательство РФ о недрах: проблемы совершенствования

А.П.АФАНАСЕНКОВ. Право залога и передачи прав пользования недрами

М.И.КЛЕАНДРОВ. Нефть, газ и арбитражный процесс: будущие проблемы

А.Н.ГОЛОМОЛЗИН: "МАП готов подхватить упавшее знамя газовой реформы"

2'2003

Т.А.БАГИРОВ: "В результате административной и правовой реформ ситуация в ТЭК России значительно улучшается"

И.Ф.ГЛУМОВ. Стратегия недропользования на континентальном шельфе арктических морей Российской Федерации

В.Б.ПОДМАСКО. Об утверждении соглашений о разделе продукции отдельными федеральными законами

1'2003

С.И.ШТОГРИН: "Государство должно иметь часть прибыльной продукции с начала добычи"

М.Л.ШАККУМ: "Ратификация СРП - это форма парламентского контроля"

Е.А.ЗОЛОТАРЕВА: "Сахалин-2" - коммерческий проект, выгодный как "Сахалин Энерджи", так и российской стороне"

К.А.БЕНДУКИДЗЕ: "Необходима существенная ревизия заключенных СРП"

 

 

Новости www.lawtek.ru

#!/usr/bin/perl ############################################################################## # Cliff's Banner Rotater Version 2.51 # # Copyright 1998 Shaven Ferret Productions # # Created 7/8/98 Last Modified 12/04/98 # # Available at http://www.shavenferret.com/scripts # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1998 Shaven Ferret Productions All Rights Reserved. # # # # This script can be used\modified free of charge as long as you don't # # change this header thing. By using this script you agree to indemnify # # me from any liability that might arise from its use. In simple English, # # if this script somehow makes your computer run amuck and kill the pope, # # it's not my fault. # # # # Redistributing\selling the code for this program without prior written # # consent is expressly forbidden. # ############################################################################## # If the ads directory is not in the same directory as this file, enter # the server path (not the URL) to the ads directory. Do not include a # trailing slash. $datadir = "/var/www/u6614017/data/www/journal.oilgaslaw.ru/cgi-bin/ban468"; ############################################################################## # Congratulations! You've finished defining the variables. If you want to, # # you can continue screwing with the script, but it isn't necessary. # ############################################################################## print "Content-type: text/html\n\n"; srand(); open(FILE,"$datadir/main.txt"); @ads = ; close(FILE); for ($i = 0; $i <= $#ads; $i++) { chomp($ads[$i]); ($file,$weight,$page,$max) = split(/\|/, $ads[$i]); $page = "/" . $page; for ($j = 1; $j <= $weight; $j++) { if (($page ne "/" && $page eq $ENV{'DOCUMENT_URI'}) || ($page eq "/")) { splice(@choose,0,0,$i); } } } $adnum = int(rand($#choose)); ($file,$weight,$page,$max) = split(/\|/, $ads[$choose[$adnum]]); open(FILE,"$datadir/$file-ad.txt"); @adtext = ; close(FILE); foreach $line(@adtext) { print "$line"; } open(FILE,"$datadir/$file-count.txt"); flock(FILE,2); $count = ; close(FILE); $count++; unless ($max && $count >= $max) { open(FILE,">$datadir/$file-count.txt"); flock(FILE,2); print FILE "$count"; close(FILE); exit; } else { splice(@ads,$choose[$adnum],1); open(FILE,">$datadir/main.txt"); foreach $ad(@ads) { print FILE "$ad\n"; } close(FILE); unlink("$datadir/$file-count.txt"); unlink("$datadir/$file-ad.txt"); exit; } #!/usr/bin/perl ############################################################################## # Cliff's Banner Rotater Version 2.51 # # Copyright 1998 Shaven Ferret Productions # # Created 7/8/98 Last Modified 12/04/98 # # Available at http://www.shavenferret.com/scripts # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1998 Shaven Ferret Productions All Rights Reserved. # # # # This script can be used\modified free of charge as long as you don't # # change this header thing. By using this script you agree to indemnify # # me from any liability that might arise from its use. In simple English, # # if this script somehow makes your computer run amuck and kill the pope, # # it's not my fault. # # # # Redistributing\selling the code for this program without prior written # # consent is expressly forbidden. # ############################################################################## # If the ads directory is not in the same directory as this file, enter # the server path (not the URL) to the ads directory. Do not include a # trailing slash. $datadir = "/var/www/u6614017/data/www/journal.oilgaslaw.ru/cgi-bin/ban234"; ############################################################################## # Congratulations! You've finished defining the variables. If you want to, # # you can continue screwing with the script, but it isn't necessary. # ############################################################################## print "Content-type: text/html\n\n"; srand(); open(FILE,"$datadir/main.txt"); @ads = ; close(FILE); for ($i = 0; $i <= $#ads; $i++) { chomp($ads[$i]); ($file,$weight,$page,$max) = split(/\|/, $ads[$i]); $page = "/" . $page; for ($j = 1; $j <= $weight; $j++) { if (($page ne "/" && $page eq $ENV{'DOCUMENT_URI'}) || ($page eq "/")) { splice(@choose,0,0,$i); } } } $adnum = int(rand($#choose)); ($file,$weight,$page,$max) = split(/\|/, $ads[$choose[$adnum]]); open(FILE,"$datadir/$file-ad.txt"); @adtext = ; close(FILE); foreach $line(@adtext) { print "$line"; } open(FILE,"$datadir/$file-count.txt"); flock(FILE,2); $count = ; close(FILE); $count++; unless ($max && $count >= $max) { open(FILE,">$datadir/$file-count.txt"); flock(FILE,2); print FILE "$count"; close(FILE); exit; } else { splice(@ads,$choose[$adnum],1); open(FILE,">$datadir/main.txt"); foreach $ad(@ads) { print FILE "$ad\n"; } close(FILE); unlink("$datadir/$file-count.txt"); unlink("$datadir/$file-ad.txt"); exit; }

Адрес редакции: 115054 Москва, ул.Зацепа, 23, офис 11
Тел.: +7 (495) 235-25-49, 235-47-88 | e-mail: info@oilgaslaw.ru

© ООО "Нефть, Газ и Право", 2004
© Design by E.Vaitkiene