//---------------
//Select all the checkboxes (hotmail style)
//---------------
function CheckAll( checkAllBox )
{
	var frm = checkAllBox.form 

	var actVar = checkAllBox.checked ;
	for(i=0;i< checkAllBox.form.length;i++)
		{
		e=frm.elements[i];
		if ( e.type=='checkbox' && e.name.indexOf("cb") != -1 )
			e.checked = actVar;
		}
}

function characterCount(text,maxLength)
{
	if(text == null)
		text = this.Form1.txtDescription
	if(text.value.length > maxLength)
		text.value = text.value.substring(0,maxLength)
	counter.innerText = maxLength - text.value.length
}
