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



Календарь мероприятий


Конференции

5-я Неделя "НефтьГазПраво / RusEnergyLaw" Week – 2007


Архив мероприятий

4-я Неделя "НефтьГазПраво / RusEnergyLaw" Week – 2006

3-я Неделя "НефтьГазПраво / RusEnergylaw" Week - 2005

2-я Неделя "НефтьГазПраво / RusEnergylaw" Week - 2004

1-я Неделя "НефтьГазПраво / RusEnergylaw" Week - 2003

2-я Международная научно-практическая конференция "НефтьГазПраво-2002"

1-я Международная научно-практическая конференция "НефтьГазПраво-2001"

Участники конференций (2001-2005)

Партнеры конференций (2001-2005)

Пресс-релизы



Школа "ПравоТЭК"

Весенняя школа "ПравоТЭК" (2007) "НЕДРА-2007: проблемы лицензирования"

Зимняя школа "ПравоТЭК" (2007) "НДПИ–2007: последние изменения в законодательстве"

Осенняя школа "ПравоТЭК" (2006) "Налоги и ТЭК–2006: актуальные правовые проблемы"

Летняя школа "ПравоТЭК" (2006) "ШЕЛЬФ-2006: актуальные правовые проблемы"

Весенняя школа "ПравоТЭК" (2006) "НЕДРА-2006: актуальные правовые проблемы"

Зимняя школа "ПравоТЭК" (2006) "НДПИ-2006: как преодолеть несовершенство законодательства"

Осенняя школа "ПравоТЭК" (2005)


Правовые издания

Журнал "Нефть, Газ и Право"

Текущий выпуск

Архив выпусков за 2006 г.

Архив выпусков за 2005 г.

Архив выпусков за 2004 г.

Архив выпусков за 2003 г.

Условия подписки

Условия размещения рекламы

Требования к оформлению статей

Журнал "Нефть, Газ и Право Казахстана"

Текущий выпуск

Архив выпусков за 2006 г.

Архив выпусков за 2005 г.

Архив выпусков за 2004 г.

Условия подписки

Условия размещения рекламы

Требования к оформлению статей

Ежегодник "Нефтегаз, Энергетика и Законодательство"

Выпуск 5 (2005-2006 гг.)

Выпуск 4 (2004-2005 гг.)

Выпуск 3 (2003-2004 гг.)

Выпуск 2 (2002-2003 гг.)

Выпуск 1 (2001-2002 гг.)

Условия подписки

Бюллетень "Вестник ТЭК: правовые вопросы"

Текущий выпуск

Архив выпусков

Условия подписки

Требования к оформлению статей



Информационные издания

Ежемесячный бюллетень "Вестник ТЭК"

Текущий выпуск

Архив выпусков

Условия подписки

Условия размещения рекламы

Еженедельный бюллетень "Вестник ТЭК: новости недели"

Текущий выпуск

Архив выпусков

Условия подписки

Еженедельный бюллетень "Вестник ТЭК: обзор прессы"

Текущий выпуск

Архив выпусков

Условия подписки


Книги, посвященные правовым вопросам в ТЭК


Условия подписки на издания


Условия размещения рекламы


Требования к оформлению статей


Новости 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/vestnik.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/vestnik.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