﻿function showWait()
{
  
    if ($get('ctl00_ContentPlaceHolder1_FileUpload1').value.length > 0)
    {
        $get('ctl00_ContentPlaceHolder1_UpdateProgress1').style.display = 'block';
        //$get('ctl00_ContentPlaceHolder1_btnUpload').disabled=true;
    }
}

// Move an element directly on top of another element (and optionally
// make it the same size)
function Cover(bottom, top, ignoreSize) 
        {
            var location = Sys.UI.DomElement.getLocation(bottom);
            top.style.position = 'absolute';
            top.style.top = location.y + 'px';
            top.style.left = location.x + 'px';
            if (!ignoreSize) 
            {
                top.style.height = bottom.offsetHeight + 'px';
                top.style.width = bottom.offsetWidth + 'px';
            }
         }
         
var styleToSelect;
    //function onOk() {}
    function onOk() 
                 {
                  window.close();
                 } 
    
    
    function DIV1_onclick() {}
