﻿// JScript File


function CheckDeleteItems()
{
    var AllInput;

    AllInput = document.aspnetForm.getElementsByTagName("input");
    
    for (var i = 0; i < AllInput.length; i++)
    {  
        if (AllInput[i].type == "checkbox" && AllInput[i].name.indexOf("chk_delete") != -1)
        {
            AllInput[i].checked = document.aspnetForm.ctl00$m_contentPh$chk_DeleteAll.checked;
        }
    }
	

}



function ClearTextBox(strID)
{
    var node = document.getElementById(strID);
    if (node != null)
    {
        node.value = "";
    }
}


function ConcatenateFormAction(strStringToAppend)
{
    var test = document.aspnetForm;
    document.aspnetForm.action += strStringToAppend;
}







