function reviewComment(url, id) {
document.write('<table width="100%"><form action="/action/comment.php" method="POST">');
document.write('<tr><td><h2 class="t_14">Add your comment</h2></td></tr>');
document.write('<tr><td width="100%">Your name<br /><input name="p[name]" type="text" style="width: 80%" /></td></tr>');
document.write('<tr><td width="100%">Your email<br /><input name="p[email]" type="text" style="width: 80%" /></td></tr>');
document.write('<tr><td width="100%">Comment<br /><textarea name="p[text]" style="width: 100%" rows="4"></textarea></td></tr>');
document.write('<tr><td width="100%"><input type="submit" value="Add comment" style="font: bold 16px Arial; height: 30px;" />');
document.write('<input type="hidden" name="url" value="' + url + '" />');
document.write('<input type="hidden" name="p[mark]" value="site-' + id + '" />');
document.write('</td></tr><tr>');
document.write('<td class="t_comment"><font color="red">*</font> all comments will be previewed by moderator before publish</td>');
document.write('</tr></form></table>');
}


