Files
web.ems/wxc2_omc/configuration/bssomc/header.inc
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

47 lines
1.1 KiB
PHP
Executable File

<?php
//
// Created on: 22 Feb 2001
// Function : Styles
//
?>
<?php
$engcharset="iso-8859-1"; // English
$gbcharset ="gb2312"; // Simpilified Chinese (GB)
$big5charset ="big5"; // Tranditional Chinese (BIG5)
if (!isset($language))
$language = "eng";
$charset="${language}charset";
echo <<< EOT
<!-- META HTTP-EQUIV="Refresh" content="2" -->
<META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=${$charset}">
<style type="text/css">
<!--
a:link { color:blue;
text-decoration:none;
Cursor:hand;
};
a:visited { color:blue;
text-decoration:none;
Cursor:hand;
};
a:hover { color:red;
text-decoration:underline;
Cursor:hand;
};
..chinese {font-family: "Courier New"; font-size: 9pt}
td { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
body { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
select { font-family: Arial, Helvetica, sans-serif; font-size: 9pt}
input { font-size: 9pt}
input.chinese {font-family: "Courier New"; font-size: 9pt}
-->
</style>
EOT;
?>