function WhatsThis() {
  window.open('/Articles/WhatsThis.cfm','Tools','toolbar=yes,scrollbars=yes,width=550,height=500');
}

function submitForm()
{
	document.feedbackForm.submit();
}

var expanded = false;
var heightIncrements = 20; //pixels
var sleepTime = 300;

function expandDiv(currentHeight, finalHeight)
{
	if(expanded) return;
	
	var div = document.getElementById('commentFormDiv');
	div.style.height = currentHeight + "px";
	
	if(currentHeight >= finalHeight)
	{
		expanded = true;
		return;
	}
	setTimeout("expandDiv(" + (currentHeight + 20) + "," + sleepTime + ")");
}