//Create textbox counts

function countChar(sString,countfield,max)
{	
	sString.value=sString.substring(0,max);
	document.getElementById(countfield).innerHTML = "&nbsp;-&nbsp;" + sString.length + " used)";
}

function focusit(this1)
{
    showCalendarControl(this1);
}

