//This function writes 

function writerow(position, team, played, won, lost, ptsfor, ptsagainst, points, special,setbg)
    {
//  Look for team name of Riga
  
    var RigaPos = team.indexOf("Riga");
    var agiRPos = team.indexOf("agiR");
  
    if (RigaPos != -1 ) {
    	var boldit = '<b>';
        var endboldit = '</b>';
          }
    else if (agiRPos != -1 ) {
    	var boldit = '<b>';
        var endboldit = '</b>';
          }
    else {
        var boldit = '';
        var endboldit = '';
        }	 	

// Set background colour if requested    
if (setbg != 0) {
    var bg= 'class="Alternate">';
	}
else	{
    var bg= '>';	
	}
//Write out the row of the table    
    document.write("<tr>");
    document.write("<td align='Center' width='8%' height='22'" + bg + boldit + position + endboldit + "</td>");
    document.write("<td align='Left' width='30%' height='22'" + bg + boldit + team + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + played + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + won + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + lost + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + ptsfor + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + ptsagainst + endboldit + "</td>");
    document.write("<td align='Left' width='8%' height='22'" + bg + boldit + points + endboldit + "</td>");
    document.write("<td align='Center' width='8%' height='22'" + bg + boldit + special + endboldit + "</td>");
    document.write("</tr>");
    }


function writeline()
    {
    document.write("<tr><td colspan='9' height='1'><hr></td></tr>");
    }


function table_header(title,subtitle,dateat)
    {
    document.write("<h3>" + title + "</h3>");
    if (subtitle != "")
             {
      document.write("<h4>" + subtitle + "</h4>");
             }
    if (dateat != null) 
	     {
      document.write("<p><i>" + dateat + "</i></p>");
	     }
    }

function table_start()
    {
    document.write("<table CELLSPACING=0 CELLPADDING=0 Border='0' width='95%'>");
    document.write("<tr>");
    writerow("Pos","Team","P","W","L","Sets"," ","Pts"," ",0); 
    writerow("","","","","","F","A","","",0);    
    document.write("</tr>");
    }

function endtable()
    {
    document.write("</table>");
    } 
 
 
 

