<?php
/**
 *  ###############################################################################################
 * 		H O M E P A G E
 *  	
 *  	Lehrstuhl fuer Angewandte Festkoerperphysik
 *  	Chair of Applied Solid State Physics
 *  ###############################################################################################
 *  	This is the commented Source-Code of the AFP Homepage.
 *  	
 *  	It is recommended to edit this source code directly in an script editor and not with a
 *  	graphical editor-program to ensure, that the comments are not erased. and the overview
 *  	will be preserved.
 *  	
 *  	Original Script-Author:					Michael Kwiatek
 *  	Script Created:							October 2008
 *  	Major Update to v2.0.00					03.11.2008	|	Michael Kwiatek
 * 		Major Update to v2.1.00					22.03.2009	|	Michael Kwiatek
 *  	
 *  	Current Script Version:					v2.1.01
 *  	Current Script Date	(dd.mm.yyyy)		23.03.2008
 *  	Current Script Time (hh.mm 24h)			14:21
 *  	Current Script Editor:					Michael Kwiatek
 *  	
 *  	(Remember to edit the variables for version and date some lines below too.)
 *  	
 *  	I hope that I have made all my comments in english and they will be helpful for anyone
 *  	who	will update this page in the future.
 *  	
 *  	
 *  ###############################################################################################
 *  	Changelog
 *  ###############################################################################################
 *
 * 		v2.1.01		* Created the new internal publications list with opportunity to download
 * 						the publications as pdf (due to copyrights only available internal)	
 *
 *		v2.1.00 	* Completed the restructuring of the public homepage
 * 						All pages are now in a multi-language format an the datafiles updated
 *					* Internal page redesigned
 * 
 * 		v2.0.10		* Reconstruction of the internal area
 * 					* Added internal version of publications list with digital downloadable
 * 						copies of the publications
 * 
 * 		v2.0.09		* Removed and corrected some invalid tags that caused errors an warnings in
 * 						the code validation of eclipse
 * 
 *		v2.0.08:	* Changed extensions of the datafiles from *.ihml to *.csv
 *					* Seperated the terms under lectures, one subpage for each term e.g. ss08 
 *		
 *		v2.0.07:	* Fixed some relative path problems on the employee site
 *
 * 		v2.0.06:	* Rebuilt some remaining sites to the new internal multi-language strcuture
 * 
 * 		v2.0.05:	* Rebuilt the cooperations site to the new internal multi-language strcuture
 * 					* Rebuilt the publications site to the new internal multi-language strcuture
 *		
 *		v2.0.04:	* Rebuilt the start site to the new internal multi-language strcuture
 *  
 * 		v2.0.03:	* Added the possibility to change the last-changed date and the site editor
 * 						for each single content file
 * 
 * 		v2.0.02:	* Restructuring of the navigation files:
 * 						they now use the path variables for the images defined in this index.php
 * 					* Restructuring of the RUB navigation files (upper left corner)
 * 						they now use the path variables for the rubdesign defined in this index.php
 * 
 * 		v2.0.01:	* The page files have now the extension *.php
 * 					* The top navigation files contains now a switch-case decision for the
 * 						choose of the language instead of a simple if decision. This is a further
 * 						upgrade for multiple language support
 * 
 * 		v2.0.00:	* The internal storing structure of the script is rewritten and reorganized.
 *  				* Many comments are added.
 *  				* Multiple language support instead of the two-language (de/en).
 *  				
 *  	v1.0.00:	* The static HTML Homepage ist ported to php for easier editing of the
 *  					dynamic contents.
 *  	
 *  ###############################################################################################
 */
	
//some variables are set with standard values at the page initialisation, so that they cannot be set from outside
	$afpphpversion		= 'v2.1.01';
	$afpphpdate			= '23.03.2009';
	//the variables in the following three lines can be overwritten in the single content files
	$afpsitedate		= '2009';
	$siteeditor			= '&#77;&#105;&#99;&#104;&#97;&#101;&#108;&#32;&#75;&#119;&#105;&#97;&#116;&#101;&#107;';	//Michael Kwiatek
	$siteeditormail		= '&#109;&#105;&#99;&#104;&#97;&#101;&#108;&#46;&#107;&#119;&#105;&#97;&#116;&#101;&#107;&#64;&#114;&#117;&#104;&#114;&#45;&#117;&#110;&#105;&#45;&#98;&#111;&#99;&#104;&#117;&#109;&#46;&#100;&#101;';
	//this two line ensure that the editorname and the editors mail adress ist available for subpages with changed editor
	$siteeditormain		= $siteeditor;
	$siteeditormailmain	= $siteeditormail;
	
	$filename 			= '';
	$navfilename		= '';
	$topnavfilename		= '';
	$rubnavfilename		= '';
	$jahr				= '';
	$fotocategory		= '';
	
//reading the sended parameters of the php REQUEST-method (GET POST and COOKIE)
	$lang	=	(isset($_REQUEST['lang'])	? $_REQUEST['lang']	: 'de');
	$main	=	(isset($_REQUEST['main'])	? $_REQUEST['main']	: 'start');
	$sub	=	(isset($_REQUEST['sub'])	? $_REQUEST['sub']	: '');

//pathes for important script folders (relativ to this index.php)
	$pathDatafiles		=	'./datafiles/';					// storage of the data files for the dynamic-content-pages (currently as TAB seperated ascii files)
	$pathPages			=	'./pages/';						// storage of dynamic-content-pagedesigns and static-content-pages are stored
	$pathNavigation		=	'./pages/navigation/';			// storage of the navigation-menu files
	$pathTopnavigation	=	'./pages/navigation/top/';		// storage of the top-navigation-menu files
	$pathImages			=	'./design/images/';				// storage of the images
	$pathPagelogos		=	'./design/images/pagelogos/';	// storage of the pagelogos (the pictures above the vertical menu on the left side)
	$pathRubdesign		=	'./design/rubdesign/';			// storage of the rub-design folder that contains the corporate page design of the RUB
	$pathInternalpages	=	'./intern/';					// storage of the internal protected pages 
	
//pathes for important script files (relativ to this index.php)
	$file404			=	'./pages/404.php';			// the error page that is shown when a file that should be included cannot be found
	
	
//create the filename for the page content from the parameters $main und $sub
	$filename = $pathPages . $main .($sub == '' ? '' : '.'. $sub ) .'.php';

	//take care of special cases, when the parameters are not directly used for the filename creation
	switch($main){
		case 'publikationen':
		case 'publikationenintern':
			//in $main 'publikationen' the $sub parameter specifies the year that ist loaded but only when $sub is not the year-overview page
			if ($sub != 'uebersicht'){
				$jahr = $sub;
				$filename = $pathPages . $main .'.php';	// the filename to be opened is created without the $sub parameter
			}
			break;
		case 'fotos':
			//in $main 'publikationen' the $sub parameter specifies the year that ist loaded but only when $sub is not the year-overview page
			if ($sub != ''){
				$fotocategory = $sub;
				$filename = $pathPages . $main .'.php';	// the filename to be opened is created without the $sub parameter
			}
			break;
		case 'intern':
			//in $main 'intern' the pages have to been searched in a different, protected folder
			$filename = $pathInternalpages . $main .($sub == '' ? '' : '.'. $sub ) .'.php';
			break;
		
		//normal case - do nothing;
		default:
			break;
	}
	//ensure that tha file name is valid - when not it will take the 404-page instead
	if (! file_exists($filename) )			{$navfilename = $file404;}

//create the filename for the navigation file from the $lang parameter
	$navfilename = $pathNavigation . $lang .'.php';
	if (! file_exists($navfilename) )		{$navfilename = $file404;}

//create the filename for the topnavigation file from the $main parameter
	$topnavfilename = $pathTopnavigation . 'nav.' . $main .'.php';
	if (! file_exists($topnavfilename) )	{$topnavfilename = $file404;}

//create the filename for the RUB navigation file from the $lang parameter
	$rubnavfilename = $pathNavigation . 'rub.' . $lang .'.php';
	if (! file_exists($rubnavfilename) )	{$rubnavfilename = $file404;}
?>

<!--Variable Text Pool-->

<?php
	//language dependent text parts:
		// unspecified language
			$indextext ['lang']['pagetitle'] = 			'';			// the page title shown in the title bar of the webbrowser
			$indextext ['lang']['pagenotfound'] = 		'';			// the error message when the script is unable to include a file
			$indextext ['lang']['headline1'] =			'';			// the name of our chair
			$indextext ['lang']['headline2'] =			'';			// the name of the professor
			$indextext ['lang']['chooselang'] =			'';			// choose the language invitation
			$indextext ['lang']['printpage'] =			'';			// print this page
			$indextext ['lang']['backtotop'] =			'';			// top of page
			$indextext ['lang']['version'] =			'';			// script version
			$indextext ['lang']['lastchange'] =			'';			// last change
		
	
		// DE DE DE
			$indextext ['de']['pagetitle'] = 			'Deutscher MBE-Workshop 2009';
			$indextext ['de']['pagenotfound'] = 		'Seite nicht gefunden!';
			$indextext ['de']['headline1'] =			'Deutscher MBE-Workshop 2009';
			$indextext ['de']['headline2'] =			'an der Ruhr-Universit&auml;t Bochum (30. September - 01. Oktober)';
			$indextext ['de']['chooselang'] =			'Sprache&#58;';
			$indextext ['de']['printpage'] =			'Diese Seite drucken';
			$indextext ['de']['backtotop'] =			'Seitenanfang';
			$indextext ['de']['version'] =				'Skriptversion';			// script version
			$indextext ['de']['lastchange'] =			'Letzte &Auml;nderung';
		
		//EN EN EN
			$indextext ['en']['pagetitle'] =			'German MBE-Workshop 2009';
			$indextext ['en']['pagenotfound'] = 		'Page not found!';
			$indextext ['en']['headline1'] =			'German MBE-Workshop 2009';
			$indextext ['en']['headline2'] =			'at the Ruhr-University of Bochum (September 30th - October 1st)';
			$indextext ['en']['chooselang'] =			'language&#58;';
			$indextext ['en']['printpage'] =			'print this page';
			$indextext ['en']['backtotop'] =			'top of page';
			$indextext ['en']['version'] =				'script version';			// script version
			$indextext ['en']['lastchange'] =			'Last Change';
	

	//the fitting pagelogo is choosen here
		$LogoFilename = '';
		switch($main){
			#case 'start':						$LogoFilename = 'logo-start1.gif';			break;
			#case 'kontakt':						$LogoFilename = 'logo-kontakt1.gif';		break;
			#case 'impressum':					$LogoFilename = 'logo-impressum1.gif';		break;
			default:							$LogoFilename = 'logo-mbe2009.png';			break;
			}
?>

<html>
	<head>
		<!--meta data-->
			<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
			<meta name="description"    content="">
			<meta name="keywords" lang="de" content="Festkoe rperphysik, LMIS, FIB, focussed ion beam, MBE">
			<meta name="keywords" lang="en" content="solid state physics, LMIS, FIB, focused ion beam, MBE">
			<meta name="author"         content="">
			<meta http-equiv="expires"  content="">
			<meta name="revisit-after"  content="">
			<meta name="DC.Publisher"   content="">
			<meta name="DC.Date"        content="">
			<meta name="DC.Subject" 	content="">
			<meta name="DC.Description" content="">
			<meta name="DC.Identifier"  content="">
			<meta name="DC.Language"    content="de">
			<meta name="DC.Rights"      content="">
			<meta name="DC.Date.Create" content="">
		
		<!--stylesheets-->
			<!--stylesheet of RUB corporate design-->
				<?php echo '<link rel="stylesheet" href="' . $pathRubdesign . 'rub-styles/rub.css" type="text/css">'; ?>
				
			<!--styles for the different lists-->				
				<link rel="stylesheet" href="./design/css/generalstyle.css" type="text/css">	
				<link rel="stylesheet" href="./design/css/liststyle.downloads.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.kooperationen.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.impressum.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.mitarbeiter.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.publikationen.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.sfbs.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.vorlesungen.css" type="text/css">
				<link rel="stylesheet" href="./design/css/liststyle.internindex.css" type="text/css">
				
			<!--styles for the navigation elements-->
				<link rel="stylesheet" href="./design/css/navistyles.css" type="text/css">
				
			<!--Lightbox - this is the box in that pictures are highlighted by klicking on them (e.g. employees list) -->
				<link rel="stylesheet" href="./design/css/lightbox.css" type="text/css">
			
		<!-- scripts -->
			<!--Lightbox - this is the box in that pictures are highlighted by klicking on them (e.g. employees list)-->
				<script type="text/javascript" src="./design/js/lightbox_prototype.js"></script>
				<script type="text/javascript" src="./design/js/lightbox_scriptaculous.js?load=effects,builder"></script>
				<script type="text/javascript" src="./design/js/lightbox_lightbox.js"></script>
			
		<!--page title-->
			<title><?php echo $indextext [$lang]['pagetitle'];	?></title>
	</head>

	<body>
		<table width="100%" height="25" border="0" cellspacing="0" cellpadding="0" bgcolor="#CAEACC">
			<tr valign="top">
				<td>
					<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/rub_schrift.gif" width="240" height="15" alt="Ruhr-Universit&auml;t Bochum" border="0" usemap="#navigationshilfe">';	?>
					<map name="navigationshilfe">
						<area shape="rect" coords="1,2,2,9" href="#navigation" alt="zur Navigation" title="zur Navigation">
						<area shape="rect" coords="4,2,6,12" href="#inhalt" alt="zum Inhalt" title="zum Inhalt">
						<area shape="rect" coords="3,1,240,15" href="&#104;&#x74;&#116;&#112;&#58;&#x2F;&#47;&#119;&#119;&#119;&#46;&#114;&#x75;&#104;&#x72;&#x2D;&#x75;&#110;&#x69;&#x2D;&#98;&#x6F;&#x63;&#x68;&#x75;&#109;&#46;&#x64;&#x65;" alt="Startseite der RUB" title="Startseite der RUB">
					</map>
					<a name="top"></a>
				</td>
				<td align="right">
					<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/kanten/right_top.gif" width="240" height="15" border="0" alt="pix">';	?>
				</td>
			</tr>
		</table>
		<table width="100%" border="0" cellspacing="0" cellpadding="0">
			<tr valign="top">
				<td width="1%">
					<table width="90" border="0" cellspacing="0" cellpadding="0">
						<tr bgcolor="#CAEACC">
							<td width="85">
								<!-- this line includes the rub naviagtion file - language dependent  -->
								<?php	if (! @include($rubnavfilename) ){echo $indextext [$lang]['pagenotfound'] ;	echo "<pre>". $rubnavfilename ."</pre>";}	?>
								<br/>
								<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/kanten/menue_kante.gif" border="0" width="85" height="15" alt="pix">';	?>
							</td>
							<td width="5">
								&nbsp;
							</td>
						</tr>
						<tr valign="top"> 
							<td width="85">
								<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/siegel/stempel_natur.gif" usemap="#siegel" width="85" height="230" border="0">';	?>
								<map name="siegel"> 
									<area shape="poly" coords="68,114,32,118,15,132,9,155,12,188,25,204,42,214,65,216,82,209,81,156,67,143" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/siegel/" alt="Das Siegel" title="Das Siegel">
								</map>
								<br/>
								<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/iconplan/navi_natur.gif" width="85" height="39" usemap="#navi" border="0"> ';	?>
								<map name="navi"> 
									<area shape="rect" coords="54,22,79,38" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/iconplan/natur.htm" alt="Naturwissenschaften" title="Naturwissenschaften">
									<area shape="rect" coords="54,1,79,18" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/iconplan/ingenieur.htm" alt="Ingenieurwissenschaften" title="Ingenieurwissenschaften">
									<area shape="rect" coords="5,22,32,38" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/iconplan/geistes.htm" alt="Geisteswissenschaften" title="Geisteswissenschaften">
									<area shape="rect" coords="5,1,31,17" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/iconplan/medizin.htm" alt="Medizinische Einrichtungen" title="Medizinische Einrichtungen">
									<area shape="rect" coords="33,10,52,29" href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/iconplan/zentral.htm" alt="Zentrale Einrichtungen" title="Zentrale Einrichtungen">
								</map>
							</td>
							<td width="5" bgcolor="#71C679">
								<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/kanten/small.gif" width="5" height="500" alt="pix">';	?>
							</td>
						</tr>
					</table>
				</td>
				<td width="1%" bgcolor="#A6DBAB">
					<br/>
					<?php echo '<img border="0" src="' . $pathPagelogos . $LogoFilename . '" width="150px" height="100px">';	?>
					<table width="150px" border="0" cellspacing="5" cellpadding="0">
						<tr><td height="0"><a name="navigation"></a></td></tr>
						<tr> 
							<td>
								<!-- this line includes the navigation file -->
								<?php	if (! @include($navfilename) ){echo $indextext [$lang]['pagenotfound'] ;	echo "<pre>". $navfilename ."</pre>";}	?>
							</td>
						</tr>
					</table>
				</td>
				<td width="98%"> 
					<table width="100%" cellpadding="0" cellspacing="0" border="0" bgcolor="#CAEACC" height="45">
						<tr height="40" valign="top"> 
							<td><?php echo '<img src="'. $pathRubdesign .'rub-grafiken/pixel.gif" width="5" height="1" border="0" alt="pix">';	?></td>
<!-- PrintStart "ueberschrift" -->
							<td valign="middle" align="left">
								<span class="ueberschrift1seite"><?php echo $indextext [$lang]['headline1'] ?></span><br>
								<span class="ueberschrift2seite"><?php echo $indextext [$lang]['headline2'] ?></span>
							</td>
<!-- PrintEnd -->
							<td align="right">&nbsp;</td>
						</tr>
						<tr height="5"><td colspan="3">&nbsp;</td></tr>
					</table>
					<table width="100%" border="0" cellspacing="0" cellpadding="0">
						<tr bgcolor="#71C679"> 
							<td width="1%">
								&nbsp;
							</td>
							<td width="99%" height="25px" colspan="2"> 
								<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
									<tr> 
										<td valign="middle">
											&nbsp;
										</td>
										<td valign="middle">
											<!-- this line includes the top naviagtion file -->
											<?php	if (! @include($topnavfilename) ){echo $indextext [$lang]['pagenotfound'] ;	echo "<pre>". $topnavfilename ."</pre>";}	?>
										</td>
										<td align="right" valign="middle">
											<?php echo $indextext [$lang]['chooselang'] ?>&nbsp;
											<?php
												echo '<a href="index.php?main=' . $main . '&sub=' . $sub . '&lang=de" class="angebote"><img border="0" src="'. $pathImages .'/flag_de.gif" height="14"></a>' . "\r\t";
												#echo '<a href="index.php?main=' . $main . '&sub=' . $sub . '&lang=en" class="angebote"><img border="0" src="'. $pathImages .'/flag_en.gif" height="14"></a>' . "\r\t";
												echo '&nbsp;&nbsp;&nbsp;';
											?>
										</td>
									</tr>
								</table>
							</td>
						</tr>
						<tr> 
							<td width="1%" bgcolor="#71C679" valign="bottom" height="35">
								<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/kanten/contentkante.gif" width="15" height="15" border="0" alt="pix">';	?>
							</td>
							<td width="99%" height="35px" valign="top" colspan="2"> 
								<table width="100%" border="0" cellspacing="4" cellpadding="0">
									<tr> 
										<td class="history">&nbsp;</td>
									</tr>
								</table>
							</td>
						</tr>
						<tr valign="top"> 
							<td width="1%" height="3px">
								<a name="inhalt"></a>
							</td>
<!-- PrintStart "inhalt" -->
							<td width="99%" height="35px" valign="top" colspan="2"> 
								<table width="100%" border="0" cellspacing="4" cellpadding="0">
									<tr>
										<td>
											<!-- this line includes the file that contains the main content -->
											<?php	if (! @include($filename) ){echo $indextext [$lang]['pagenotfound'] ;	echo "<pre>". $filename ."</pre>";}	?>
										</td>
									</tr>
								</table>
							</td>
<!-- PrintEnd -->
						</tr>
						<tr valign="top"> 
							<td width="1%" height="74px">&nbsp;</td>
							<td width="99%" height="74" colspan="2"> 
								<table width="100%" border="0" cellspacing="10" cellpadding="0">
									<tr> 
										<td>
											<a href="#top">
												<?php echo '<img src="'. $pathRubdesign .'rub-grafiken/navielement/up.gif" alt="Zum Seitenanfang" border="0" width="10" height="10">';	?></a>&nbsp;&nbsp;
											<a href="#top">
												<?php echo $indextext [$lang]['backtotop']; ?></a>&nbsp;&#124;&nbsp;
											<a href="&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/cgi-bin/printable.pl?template=&#x68;&#116;&#116;&#x70;&#x3A;&#47;&#x2F;&#x77;&#119;&#119;&#46;&#114;&#x75;&#104;&#114;&#45;&#117;&#110;&#x69;&#45;&#x62;&#x6F;&#99;&#104;&#x75;&#x6D;&#x2E;&#x64;&#x65;/drucktemplates/rahmen-natur.html"><?php echo $indextext [$lang]['printpage']; ?></a>
										</td>
									</tr>
									<tr>
<!-- PrintStart "fusszeile" -->
										<td>
											<?php echo $indextext [$lang]['lastchange'] .'&nbsp;'. $afpsitedate .'&nbsp;&#124;&nbsp;'; ?>
											<?php echo $indextext [$lang]['version'] .'&nbsp;'. $afpphpversion . ' (' . $afpphpdate .')' .'&nbsp;&#124;&nbsp;'; ?>
											<?php echo '<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;'.  $siteeditormail .'">' . $siteeditor .'</a>'; ?>
										</td>
<!-- PrintEnd -->
									</tr>
								</table>
							</td>
						</tr>
					</table>
				</td>
			</tr>
		</table>
	</body>
</html>