﻿// JScript File
<!--
function GetDate(CtrlName)
		{    
			ChildWindow = window.open("DateForm.aspx?FormName=" + document.forms[0].name + "&CtrlName=" + CtrlName, "PopUpCalendar", "width=270,height=260,top=200,left=200,toolbars=no,scrollbars=no,status=no,resizable=no");    
		}

function validateLength(elmId, maxLength)
{
	var txBx = document.getElementById(elmId);
	if(txBx.value.length > maxLength)
	{
		alert('Entry is ' + txBx.value.length + ' characters in length.  Maximum of ' + maxLength + ' characters allowed.');
		txBx.focus();
	}
}
-->

