/*
 * @author Erik Anders aka --=GT-O=--Hellfire
 */

// reference local blank image
Ext.BLANK_IMAGE_URL = 'images/spacer.gif';
 
// create namespace
Ext.namespace('gto');
 
// create application
gto.tsview = function() {
    // do NOT access DOM from here; elements don't exist yet
 
    // private variables
		
    // private functions
 
    // public space
    return {
		// public properties, e.g. strings to translate
		
		// public methods
		init: function()
		{   
			Ext.QuickTips.init();
			
			Ext.get('ts-container').load(
			{
				url: 'libacts/examples/tsviewer.php',
				loadingText: 'Loading...'
			});
		
		}
	}
}(); // end of app
 
// end of file
