<html><head>
<?php
if(file_exists($_SERVER['DOCUMENT_ROOT']."/template_header_site.php"))
	{	
		include($_SERVER['DOCUMENT_ROOT']."/template_header_site.php");
	}
else
	{
		echo "</head><body><h2>Страница в процессе разработки</h2>";
	}
       echo "<img src=/pic_template/underconstruction.gif height=200 width=200>";
   include($_SERVER['DOCUMENT_ROOT'].'/sape_code_include.php');
   include($_SERVER['DOCUMENT_ROOT'].'/include_linhdd.php');
if(file_exists($_SERVER['DOCUMENT_ROOT']."/template_footer_site.php"))
	{
		include($_SERVER['DOCUMENT_ROOT']."/template_footer_site.php");
	}
else
	{
		echo "</body></html>";
	}
?>

