var entryCount=1;
var firstEntry=1;
var rowz=1;

function printTableRow()
{
     if (firstEntry==0) {
        document.write('</TR></TBODY>');
}
     if (entryCount==0) {
        document.write('<TBODY><TR BGCOLOR="#eeeeee" CLASS=noprofil valign="top">');
        entryCount=1;
        firstEntry=0;
}    else  {
        document.write('<TBODY><TR BGCOLOR="white" CLASS=noprofil valign="top">');
        entryCount=0;
        firstEntry=0;
}
}

function printSecondRow()
{
     if (entryCount==0) {
        document.write('<TR><TD COLSPAN="5"><CENTER>');
        document.write('<TABLE WIDTH="95%" COLS="1" BGCOLOR="white" CLASS=profil');
        document.write('border="5">');
        document.write('<TR BGCOLOR="#ffffff" CLASS=profil valign="top">');
        entryCount=0;
        firstEntry=0;
} else {
        document.write('<TR BGCOLOR="#eeeeee" CLASS=noprofil valign="top">');
        entryCount=1;
        firstEntry=0;
}
}

function closeSecondRow()
{
        document.write('</TR></CENTER></TD></TABLE>');
}

