]> git.vanrenterghem.biz Git - www.vanrenterghem.biz.git/blobdiff - phpBB2_old/templates/Helius/overall_header.tpl
Verwijder verouderde bestanden.
[www.vanrenterghem.biz.git] / phpBB2_old / templates / Helius / overall_header.tpl
diff --git a/phpBB2_old/templates/Helius/overall_header.tpl b/phpBB2_old/templates/Helius/overall_header.tpl
deleted file mode 100644 (file)
index ad997bd..0000000
+++ /dev/null
@@ -1,201 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html dir="{S_CONTENT_DIRECTION}">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}">
-<meta http-equiv="Content-Style-Type" content="text/css">
-<meta name="Author" content="Frederik Vanrenterghem - with some help..." />
-{META}
-{NAV_LINKS}
-<title>{SITENAME} :: {PAGE_TITLE}</title>
-<link rel="stylesheet" href="{T_TEMPLATE_PATH}/Helius.css" type="text/css">
-
-<!-- start vanrenterghem.biz styles -->
-<link rel="stylesheet" href="/styles/header.css" type="text/css" />
-<link rel="stylesheet" href="/styles/main.css" type="text/css" />
-<!-- end vanrenterghem.biz styles -->
-<style type="text/css">
-<!--
-th, td.th, td.spacerow { background-color: #066000; }
-td.th2 { background-image: url({T_TEMPLATE_PATH}/images/bg_cat2.gif); }
-td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom, td.row4     { background-image: url({T_TEMPLATE_PATH}/images/bg_cat4.gif); }
-
-/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
-@import url("{T_TEMPLATE_PATH}/formIE.css"); 
--->
-</style>
-<!-- BEGIN switch_enable_pm_popup -->
-<script language="Javascript" type="text/javascript">
-<!--
-       if ( {PRIVATE_MESSAGE_NEW_FLAG} )
-       {
-               window.open('{U_PRIVATEMSGS_POPUP}', '_phpbbprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');;
-       }
-//-->
-</script>
-<!-- END switch_enable_pm_popup -->
-<script language="javascript" type="text/javascript">
-<!--
-
-var PreloadFlag = false;
-var expDays = 90;
-var exp = new Date(); 
-var tmp = '';
-var tmp_counter = 0;
-var tmp_open = 0;
-
-exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
-
-function changeImages()
-{
-       if (document.images)
-       {
-               for (var i=0; i<changeImages.arguments.length; i+=2)
-               {
-                       document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
-               }
-       }
-}
-
-function newImage(arg)
-{
-       if (document.images)
-       {
-               rslt = new Image();
-               rslt.src = arg;
-               return rslt;
-       }
-}
-
-function PreloadImages()
-{
-       if (document.images)
-       {
-               // preload all rollover images
-               <!-- BEGIN switch_user_logged_out -->
-               img0 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_login_on.gif');
-               img1 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_register_on.gif');
-               <!-- END switch_user_logged_out -->
-               <!-- BEGIN switch_user_logged_in -->
-               img2 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_pm_on.gif');
-               img3 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_profile_on.gif');
-               img4 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_groups_on.gif');
-               img5 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_logout_on.gif');
-               <!-- END switch_user_logged_in -->
-               img6 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_faq_on.gif');
-               img7 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_search_on.gif');
-               img8 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_users_on.gif');
-               img9 = newImage('{T_TEMPLATE_PATH}/images/lang_{LANG}/btn_index_on.gif');
-               PreloadFlag = true;
-       }
-       return true;
-}
-
-
-function SetCookie(name, value) 
-{
-       var argv = SetCookie.arguments;
-       var argc = SetCookie.arguments.length;
-       var expires = (argc > 2) ? argv[2] : null;
-       var path = (argc > 3) ? argv[3] : null;
-       var domain = (argc > 4) ? argv[4] : null;
-       var secure = (argc > 5) ? argv[5] : false;
-       document.cookie = name + "=" + escape(value) +
-               ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
-               ((path == null) ? "" : ("; path=" + path)) +
-               ((domain == null) ? "" : ("; domain=" + domain)) +
-               ((secure == true) ? "; secure" : "");
-}
-
-function getCookieVal(offset) 
-{
-       var endstr = document.cookie.indexOf(";",offset);
-       if (endstr == -1)
-       {
-               endstr = document.cookie.length;
-       }
-       return unescape(document.cookie.substring(offset, endstr));
-}
-
-function GetCookie(name) 
-{
-       var arg = name + "=";
-       var alen = arg.length;
-       var clen = document.cookie.length;
-       var i = 0;
-       while (i < clen) 
-       {
-               var j = i + alen;
-               if (document.cookie.substring(i, j) == arg)
-                       return getCookieVal(j);
-               i = document.cookie.indexOf(" ", i) + 1;
-               if (i == 0)
-                       break;
-       } 
-       return null;
-}
-
-function ShowHide(id1, id2, id3) 
-{
-       var res = expMenu(id1);
-       if (id2 != '') expMenu(id2);
-       if (id3 != '') SetCookie(id3, res, exp);
-}
-       
-function expMenu(id) 
-{
-       var itm = null;
-       if (document.getElementById) 
-       {
-               itm = document.getElementById(id);
-       }
-       else if (document.all)
-       {
-               itm = document.all[id];
-       } 
-       else if (document.layers)
-       {
-               itm = document.layers[id];
-       }
-       if (!itm) 
-       {
-               // do nothing
-       }
-       else if (itm.style) 
-       {
-               if (itm.style.display == "none")
-               { 
-                       itm.style.display = ""; 
-                       return 1;
-               }
-               else
-               {
-                       itm.style.display = "none"; 
-                       return 2;
-               }
-       }
-       else 
-       {
-               itm.visibility = "show"; 
-               return 1;
-       }
-}
-
-//-->
-</script>
-</head>
-<body>
-<!-- start of vanrenterghem.biz header - including PHP is possible  thanks to extreme styles mod - xs_mod -->
-<?php readfile($_SERVER['DOCUMENT_ROOT'].'/header.shtml'); ?> 
-<!-- end include of vanrenterghem.biz header-->
-
-<a name="top"></a>
-<!-- BEGIN switch_user_logged_out -->
-<!-- END switch_user_logged_out -->
-<!-- BEGIN switch_user_logged_in -->
-<!-- END switch_user_logged_in -->
-<span class="subtitle">{SITE_DESCRIPTION}</span>
-<br />
-
-<table border="0" cellspacing="0" cellpadding="10" width="100%">
-<tr>
-       <td align="center" valign="top">