// script to add rows to table of ballast water projects.  dc 7/26/05
// for use with PROJECTS.html

function addRow(v1,v2,v3,v4)
{

// var sq = single quote
var sq="'";

document.write('<tr style="height:12.75pt"><td VALIGN=TOP NOWRAP style="border:solid windowtext .5pt;border-top:none;padding:0in .05in 0in .05in;height:12.75pt">');
document.write('<center><span style='+sq+'font-size:10.0pt;font-family:Arial'+sq+'>');
document.write(v1);
document.write('<o:p></o:p></span></center>');
document.write('</td>');

document.write('<td VALIGN=TOP WIDTH="103" style="width:77.2pt;border-top:none;border-left:none;border-bottom:solid windowtext .5pt;border-right:solid windowtext .5pt;padding:0in .05in 0in .05in;height:12.75pt">');
document.write('<div class="MsoNormal"><span style='+sq+'font-size:10.0pt;font-family:Arial'+sq+'>');
document.write(v2);
document.write('<o:p></o:p></span></div>');
document.write('</td>');

document.write('<td VALIGN=TOP WIDTH="299" style="width:224.0pt;border-top:none;border-left:none;border-bottom:solid windowtext .5pt;border-right:solid windowtext .5pt;padding:0in .05in 0in .05in;height:12.75pt">');
document.write('<div class="MsoNormal"><span style='+sq+'font-size:10.0pt;font-family:Arial'+sq+'>');
document.write(v3);
document.write('<o:p></o:p></span></div>');
document.write('</td>');

document.write('<td VALIGN=TOP WIDTH="150" style="width:112.75pt;border-top:none;border-left:none;border-bottom:solid windowtext .5pt;border-right:solid windowtext .5pt;padding:0in .05in 0in .05in;height:12.75pt">');
document.write('<div class="MsoNormal"><span style='+sq+'font-size:10.0pt;font-family:Arial'+sq+'>');
document.write(v4);
document.write('<o:p></o:p></span></div>');
document.write('</td></tr>');
}