

function PrintSubject()
{
	document.write("<table border='0'>");
	      document.write("<tr>");
	        document.write("<td><font face='Arial' size='2'>Sujet:</font>");
	        document.write("</td>");
	        document.write("<td><input type='text' name='sujet' size='15'>");
	        document.write("</td>");
	      document.write("</tr>");
	document.write("</table>");
}	


function PrintMsgTitle()
{
	document.write("<table width='380' border='0'>");
	      document.write("<tr>");
	        document.write("<td width='316'><font face='Arial' size='2'>votre message:</font></td>");
	      document.write("</tr>");
	document.write("</table>");
}

function PrintValidButtonMailBox()
{
       document.write("<br><table><tr><td width='200' align='right'><input type='submit' name='Submit' value='Envoyer'></td></tr></table>");
}

function PrintSubjectAndMsgCells(width)
{
	if(width==0 || width == undefined || width == 'undefined' || width == null)
		{width=45;}
	PrintSubject();

	PrintMsgTitle();
	document.write("<textarea name='question' cols='",width,"' rows='12'></textarea>");
}



