//  dw_event.js version date Apr 2008
//  basic event handling file from dyn-web.com


function downloadIESFile(p_name, p_path) {
    
    if (p_path != null && p_path != '') 
    { 
        document.getElementById('MyFileAvailableBox').innerHTML = ''; 
        window.location.href = p_path.substring(2); 
    } else 
    { 
        document.getElementById('MyFileAvailableBox').innerHTML = 'Sorry, there is no file available for ' + p_name + '.'; 
    }
}

