
Ext.onReady(function()
{
  /*
	Ext.get('contact_det').on('click', function()
	{
		var con_win = new Ext.Window({
			title: 'Contact BIU',
			autoLoad: 'contact.htm',
			width:650,
			height:400,
			border:true,
			autoScroll:true,
			plain:true,
			modal:true,

			buttons: [{
			    text: 'Close',
			    handler: function(){
				con_win.hide();
			    }
			 }]

		});
		con_win.show(this);
	});

	Ext.get('help_sys').on('click', function()
	{
		var help_win = new Ext.Window({
			title: 'Help System',
			autoLoad: 'help.htm',
			width:400,
			height:400,
			border:true,
			autoScroll:true,
			plain:true,
			modal:true,

			buttons: [{
			    text: 'Close',
			    handler: function(){
				help_win.hide();
			    }
			 }]

		});
		help_win.show(this);

	});
    */
if (js_loginerror != '')
{
	Ext.MessageBox.alert('Error',js_loginerror);
}
});

