var d = document;

function do_valentine(username,getter,issuedate,imagess,comment,nuumm) {
	d.write('<table width=600 cellpadding=0 cellspacing=0 border=0 background=i/ecard.gif align=center><tr><td colspan=3><table width=600 cellpadding=0 cellspacing=0 border=0><tr><td width=30><img src=i/0.gif width=30 height=100><br></td><td width=460><i><font style="font-family: Comic Sans MS; color: 585755; font-size: 12px"><b>Валентинка № <font class="uname">'+nuumm+'</font></b></font><br><font style="font-family: Comic Sans MS; color: 585755; font-size: 12px"><b>от: <font class="uname">'+username+'</font></b></font><br><font style="font-family: Comic Sans MS; color: 585755; font-size: 12px"><b>кому: <font class="uname">'+getter+'</font></b></font><br><font style="font-family: Comic Sans MS; color: 585755; font-size: 10px"><b>дата: '+issuedate+'</b></font></i></td><td width=100><img src="'+imagess+'" width=100 height=100><br></td><td width=10><img src=i/0.gif width=10 height=100><br></td></tr></table></td></tr><tr><td width=30><img src=i/0.gif width=30 height=150><br></td><td><div style="width: 540px; height: 150px; overflow: auto;"><font style="font-family: Comic Sans MS; color: 585755; font-size: 16px">'+comment+'</font></div></td><td width=30><img src=i/0.gif width=30 height=150><br></td></tr><tr><td colspan=3><img src=i/0.gif width=100% height=50><br></td></tr></table><br><hr color=DFA664 size=1><br>');
	}

function Validator(theForm)
{

  if (theForm.USER_NAME.value.replace(/(^\s*)|(\s*$)/g, "") == "")
  {
    alert("Вы должны ввести имя !");
    theForm.USER_NAME.focus();
    return (false);
  }

  if (theForm.CONTENT.value.replace(/(^\s*)|(\s*$)/g, "") == "")
  {
    alert("Пустое сообщение !");
    theForm.CONTENT.focus();
    return (false);
  }

  return (true);
}
