function showForm(boxID,divID){
	if($F(boxID) == 'on')
		$(divID).style.display = 'block';
	else
		$(divID).style.display = 'none';
}

function checkBoxConfirm(boxID, message){
	if($F(boxID) != 'on')
		if(!confirm(message))
			$(boxID).checked = 'checked';
}