<?php
/******************************************************************************/
/* MODUL: lage/reloadmap.php4 */
/* */
/* DATUM: 06.02.2007, Version 0.1 */
/* BESCHR.: Aktualisieren der Karte nur bei neuer Datei */
/* */
/* AUTOR: Marcus Groh */
/* LIZENZ: GPL v2 vom Juni 1991 */
/* */
/* AENDERUNGEN: 01.07.2004 -initiale Version */
/* 27.03.2006 v 0.1, -Versionskennzeichnung eingefuehrt */
/* -Code unter GPL v2 gestellt */
/* */
/******************************************************************************/
$allowed_groups=array("elw");
include ('../_include/header_2.php4');
if (!file_exists($EXT_MAP) )
{
break;
}
if ( filemtime($EXT_MAP) != $ExtMapTimeStamp )
{
$ExtMapTimeStamp=filemtime($EXT_MAP);
?>
<script language="JavaScript">
<!--
function upd_map(URL1)
{
parent.frames.location.href=URL1;
}
//-->
upd_map('./load_map.php4');
</script>
<?
}
echo "<meta http-equiv=\"refresh\" content=\"10; URL=reloadmap.php4\">\n";
include ('../_include/footer_2.php4');
?>