// 
// this file write in the document the specific input
// for the specific process of the form
//
// the following variables must be defined in the file 
// that include this script : 
// 
//    - subject : subject of the mail
//    - sendto  : recipient of the mail


function writeInputs()
{
	document.write("<input type='hidden' name='mailfrom' value=''>");
	document.write("<input type='hidden' name='copycarbon' value=''>");
	document.write("<input type='hidden' name='sendto' value='" + sendto + "'>");
	document.write("<input type='hidden' name='subject' value='" + subject + "'>");
	document.write("<input type='hidden' name='returnpage' value='" + returnPage + "'>");
}
