function submitForm(aform,aElmts,aValue){
	theForm = document.forms[aform];
	for(i=0;i<aElmts.length;i++){
		theForm[aElmts[i]].value = aValue[i];	
	}
	theForm.submit();
}

function collExp(aDiv){
	cDiv = document.getElementById(aDiv)
	if(cDiv.style.display != 'inline') cDiv.style.display='inline';
	else cDiv.style.display='none';
}

