/**********************************************************************************************/
// function Summary_Enable()
// - Enables or disables the summary field based on the checkbox above it
//
// Author: Ram Razavi
// Date: 11/15/2001
// Last Modified: 11/15/2001

function Summary_Enable()
{
	document.addarticle.elements['summary'].disabled  = document.addarticle.elements['usefirstparagraph'].checked;
}

