Update common.php

This commit is contained in:
majestick
2013-07-21 11:33:38 +02:00
parent bfd521a5fc
commit 8f4697e67f

View File

@@ -38,6 +38,23 @@ function printHeader($withmenu="default") {
<head> <head>
<title>PHPki: <?php echo $title?> </title> <title>PHPki: <?php echo $title?> </title>
<link rel="stylesheet" type="text/css" href="<?php echo $style_css?>"> <link rel="stylesheet" type="text/css" href="<?php echo $style_css?>">
<script type="text/javascript" language="javascript">
function setVisibility(rowName, show) {
// Tabellenzelle ermitteln
var actualVisibility=document.getElementById(rowName).style.visibility;
if(show==false) {
document.getElementById(rowName).style.visibility = "hidden";
document.getElementById(rowName).style.display = "none";
} else {
document.getElementById(rowName).style.visibility = "visible";
document.getElementById(rowName).style.display = "";
}
}
</script>
</head> </head>
<body> <body>
<?php <?php