﻿// JScript File
function CheckDDLValue(theControl)
{ 
    var list; 
    //= document.getElementById(theControl);
    
    if (document.layers){
        list = document.layers[theControl];
    }
    if (document.getElementById) {
      list = document.getElementById(theControl);
    }
    
    
    var selected = list.options[list.selectedIndex].value;
    if (selected != "-1")
    {
        document.location.href = selected;
    }
}


function OpenImage(idToUpdate)
{

  window.open('ImageGet.aspx?ControlName=' + idToUpdate, 'Image', "status=1, width=640, height=480, resizable=yes, menubar=no, toolbar=no, scrollbars=yes" );

}


function OpenFile(idToUpdate)
{

  window.open('FileGet.aspx?ControlName=' + idToUpdate, 'Image', "status=1, width=640, height=480, resizable=yes, menubar=no, toolbar=no, scrollbars=yes" );

}

