function include(file) {
   if (document.createElement && document.getElementsByTagName) {
     var head = document.getElementsByTagName('head')[0];

     var script = document.createElement('script');
     script.setAttribute('type', 'text/javascript');
     script.setAttribute('src', file);

     head.appendChild(script);
   } else {
     alert('Your browser can\'t deal with the DOM standard. That means it\'s old. Go fix it!');
   }
}

//User Actions
include('/scripts/smsbox/ext/ux/SmsBox/User.js');

//SmsBox MainScreen + Panels
include('/scripts/smsbox/ext/ux/SmsBox/MainScreen.js');
include('/scripts/smsbox/ext/ux/SmsBox/Panels.js');

//Cards Tree Panel + Main Panel + Windows
include('/scripts/smsbox/ext/ux/Cards/Panels.js');
include('/scripts/smsbox/ext/ux/Cards/GreetingWindow.js');

