1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="gc_panel.css" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<script type="text/javascript">
// for some reason, onclick onmouseover onmouseout can’t launch function in attached script, so here it is.
function showData (sIdErr) {
document.getElementById("data"+sIdErr).hidden = false;
}
function hideData (sIdErr) {
document.getElementById("data"+sIdErr).hidden = true;
}
</script>
<body class="panel">
<div style="position: fixed; width: 100%">
<div id="rightcorner">
<a class="rightcornerbutton red" id="close" href="#" title="Fermer"><b>×</b></a>
<a class="rightcornerbutton cyan" id="expand_reduce" href="#" title="Réduire/Agrandir"><b>−</b></a>
<a class="rightcornerbutton1 green" id="copy_to_clipboard" href="#" style="display: none;" onclick="return false;" title="Copier dans le presse-papiers">
<b id="clipboard_msg">∑</b>
|
<
<
<
<
<
<
<
<
<
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="gc_panel.css" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<body class="panel">
<div style="position: fixed; width: 100%">
<div id="rightcorner">
<a class="rightcornerbutton red" id="close" href="#" title="Fermer"><b>×</b></a>
<a class="rightcornerbutton cyan" id="expand_reduce" href="#" title="Réduire/Agrandir"><b>−</b></a>
<a class="rightcornerbutton1 green" id="copy_to_clipboard" href="#" style="display: none;" onclick="return false;" title="Copier dans le presse-papiers">
<b id="clipboard_msg">∑</b>
|