47 lines
1.1 KiB
PHP
Executable File
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;
|
|
|
|
|
|
?>
|