document.write('<form name="form1" id="form1" method="post" action="send-comment.php"><br />'
			+ 	'<input type="hidden" id="plugName" name="plugName" value="zob">'
			+	'<span class="right_title">Leave a comment:</span><br /><br /> '         
			+   '<table width="75%" border="0" cellspacing="0" cellpadding="2">'
            +   '    <tr> '
            +   '    <td width="18%" align="right">name: </td>'
            +   '	<td><input type="text" name="name" class="comment_textfield"/></td>'
            +   ' 	</tr>'
            +   '	<tr> '
            +   '	<td align="right">email: </td>'
            +   '	<td><input type="text" name="email" class="comment_textfield" /></td>'
            +   '   </tr>'
            +   '  <tr> '
            +   '     <td align="right" valign="top">comment: </td>'
            +   '		<td><textarea name="comments" class="comment_textfield" rows="6" cols="36"></textarea>'
            +   '		<br />'
            +   '		<input type="button" value="send" onclick="sendComments(this)"/></td>'
            +   '		</tr>'
            +   '	</table>'
            + ' </form>');
