<?php header ("Content-Type: text/css"); ?>
<style type="text/css" media="all">
#a-decoy { display: block; } #b-decoy { display: none; } #noCssTr { display: none; } #noCssTd { display: none; }<?php



// The above decoy is nessaccary as some browsers 'miss' the first declaration. I don't know why.

$pathVariables=explode("/", $_SERVER["PATH_INFO"]);
$id=$pathVariables[1];



// The modul %8 of the id number here and the modul %8 of the sdot field in the form should match.

$show=$id%8;

if ( $show%2==1 ) {
    print " #a-shem { display: block; } #b-shem { display: none; }";
}else{
    print " #a-shem { display: none; } #b-shem { display: block; }";
}

$show=$show/2;

if ( $show%2==1 ) {
    print " #a-doar { display: block; } #b-doar { display: none; }";
}else{
    print " #a-doar { display: none; } #b-doar { display: block; }";
}

$show=$show/2;

if ( $show%2==1 ) {
    print " #a-heara { display: block; } #b-heara { display: none; }";
}else{
    print " #a-heara { display: none; } #b-heara { display: block; }";
}

?>
</style>