﻿// 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();
	}
}

function controlDisplay(elmIdToDisplay, elmIdsToHideCsv)
{
    var divIDsToHide = elmIdsToHideCsv.split(',');
    document.getElementById(elmIdToDisplay).style.display = '';
    for(i = 0; i < divIDsToHide.length; i++)
    {
        document.getElementById(divIDsToHide[i]).style.display = 'none';
    }
}
-->


