// **
// ** The call is: <script type="text/javascript" src="http://www.newenglandemployer.com/job/java/pppricing.js"></script></font><p>
// **                                                                            

// ** Enter monthly ad rates

thirty="$15.00"
sixty="$25.00"
ninety="$30.00"

// ** Enter monthly additional ad rates

adthirty="$15.00"
adsixty="$15.00"
adninety="$15.00"

// ** Enter monthly ad renewal rate

rethirty="$15.00"
resixty="$15.00"
reninety="$15.00"

 document.write ('<table width=\"100%\" border=\"1\">');
 document.write ('<tr>');
 document.write ('<td><small><font face=\"Arial\"><b>Ad Duration (in days)</b></font></small></td>');
 document.write ('<b><td>30</b></td>');
 document.write ('<b><td>60</b></td>');
 document.write ('<b><td>90</b></td>');
 document.write ('</tr>');
 document.write ('<tr>');
 document.write ('<td><small><font face=\"Arial\"><b>Cost for First Ad</b></font></small></td>');
 document.write ('<td><font color=red> ' + thirty + ' </td>');
 document.write ('<td><font color=red> ' + sixty + ' </td>');
 document.write ('<td><font color=red> ' + ninety + ' </td>');
 document.write ('</tr>');
 document.write ('<tr>');
 document.write ('<td><small><font face=\"Arial\"><b>Cost for each additional Ad</b></font></small></td>');
 document.write ('<td> ' + adthirty + ' </td>');
 document.write ('<td> ' + adsixty + ' </td>');
 document.write ('<td> ' + adninety + ' </td>');
 document.write ('</tr>');
 document.write ('<tr>');
 document.write ('<td><small><font face=\"Arial\"><b>Cost for Ad Renewals</b></font></small></td>');
 document.write ('<td> ' + rethirty + ' </td>');
 document.write ('<td> ' + resixty + ' </td>');
 document.write ('<td> ' + reninety + ' </td>');
