подскажите для чего нужны строки с 1 по 10 (пример в низу) какую роль они исполняют.эту часть шаблона я делал в программе астерикс и что будет если удалить
1. <?php
2. defined('_JEXEC') or die('Restricted access'); // no direct access
3. require_once dirname(__FILE__). DIRECTORY_SEPARATOR . 'functions.php';
4. $document = null;
5. if (isset($this))
6. $document = & $this;
7. $baseUrl = $this->baseurl;
8. $templateUrl = $this->baseurl . '/templates/' . $this->template;
9. artxComponentWrapper($document);
10. ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" />
<!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
<script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
</head>
<body>