/**
 * file DeskShortCreator.js with application to create desktop shorty
 * @author Janusz Rygał
 * @date 02.07.2009
 */

/**
 * @class DeskShortCreator to create desktop shorty
 */
 DeskShortCreator = function(){

        this.start = function() {
            if(Ext.isWindows){
                var link = '../resources/oms/main/instals/windows/OKMS Instalation.exe';
                window.location = link;
            }else{
                Ext.Msg.alert('Warning', context.translator.translate('instal_only_for_windows'));
            }
       }

 }


