function appendemail() {
	var x = document.forma.email.value;
	document.forma.recipient.value = document.forma.recipient.value + ',' + x;
	return true;
	}
	
function process() {

	var L = document.forma.length;

	var addit = 0;
	var k = 0;
	var outlist = '';
	if  (document.forma['Order:'].checked==true) { addit= -20;
	 	k=-1};
	for (var i=0;i<L;i++) {
			x = document.forma[i].type;
			if (x== 'checkbox') {
				if (document.forma[i].checked==true) {
					addit = addit + 20;
					k = k+1
					outlist=outlist + '\n' + document.forma[i].name;};
				};
			};
			document.forma.total_due.value= addit + 6;
			document.forma.total_pictures.value= k;
			// document.forma.comments.value= outlist;

	}
	
	


function loadname() {
	var z = document.title;
	x2 = z.split(' - ');
	document.forma.RollTitle.value	=	x2[x2.length-1];
	document.forma.RollNumber.value	=	x2[x2.length-1];
	}
	
	
function writename() {
	var z = document.title;
	x2 = z.split(' - ');
	document.write(	x2[x2.length-1] );
	}
	
