function reviewRate(url, id, name) {

document.write('<table style="margin-top: 20px; margin-bottom: 20px; background-image: url(/imgs/rate_bg.gif);" height="47" width="475" cellpadding="0" cellspacing="0" align="center"><tr>');
document.write('<form name="myrateform" method="POST" action="/action/rate-site.php">');
document.write('<td width="37%" align="center">');
document.write('<select name="value" onChange="this.form.submit();">');
document.write('<option selected>please select</option>');
document.write('<option value="5">***** - best site</option>');
document.write('<option value="4">****&nbsp;&nbsp; - good site</option>');
document.write('<option value="3">***&nbsp;&nbsp;&nbsp;&nbsp; - average</option>');
document.write('<option value="2">**&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - not good</option>');
document.write('<option value="1">*&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; - very bad</option>');
document.write('</select>');
document.write('<input type="hidden" name="mark" value="site-' + id + '">');
document.write('<input type="hidden" name="url" value="' + url + '">');
document.write('</td></form>');
document.write('<td width="63%" style="font: 11px Verdana; color: #999999;">If you have your own opinion about ' + name + ' site do not hesitate and add your rate here.</td>');
document.write('</tr></table>');
      
}

 
