﻿var IFc = 0 ;
function ImageFile(){
    
    IFc +=1;
    var id = 'AddImage' //+ IFc;
    var ULObj = document.getElementById(id);
    var obj = document.createElement("li");
    var HTMLCode = '<input type="file" class="EnInputs" name="Photo" id="Photo' + IFc + '" /><br style="clear:both" /><!--FileImageUpload-->';
    obj.setAttribute("style","list-style-type:none;padding:0px;margin:0px;display:block;");
    obj.innerHTML=HTMLCode ;
    ULObj.appendChild(obj);
}
function DelImage(filename,animal,SID,id){
    var oXmlHttp = zXmlHttp.createRequest();
    oXmlHttp.open("GET","/ATransfer/GetData.aspx?t=4&n=" & filename & "&val=" & animal & "&id=" + SID,true);
    oXmlHttp.onreadystatechange = function () {
        if (oXmlHttp.readyState == 4) {
            if (oXmlHttp.status == 200){
                var strRequest = oXmlHttp.responseText;
                if (strRequest == "1"){
                    document.getElementById(id).style.display = "none";
                }
            }
        }
    }
    oXmlHttp.send(null);
}
