function drawForm(action,id) {
	$('add_comment').innerHTML = '<h3>Schrijf bericht</h3><form method="post" action="'+action+'/addcomment/"><ul><li><label class="required" for="cmt_name">Naam*</label><input type="text" class="text" name="cmt_name" id="cmt_name" maxlength="255"><li><label for="cmt_mail">E-mail</label><input type="text" class="text" name="cmt_mail" id="cmt_mail" maxlength="255"><li><label for="cmt_website">Website</label><input type="text" class="text" name="cmt_website" id="cmt_website" maxlength="255"><li id="msgfield"><label class="required" for="cmt_message">Message*</label>   <textarea name="cmt_message" id="cmt_message"></textarea></ul><p><span class="required">*Verplicht veld</span><input type="hidden" name="cmt_id" value="'+id+'"><input type="submit" value="Verzend!"></form>';
}