//*****************************************************************************
//	Copyright 2006 BITart Gerd Knops, all rights reserved.
//
//	Project: OS Y
//	File   : osy.js
//	Author : Gerd Knops gerti@BITart.com
//
//*****************************************************************************
//
//	Description:
//	OS Y main javascript code
//
//*****************************************************************************
//
//	DISCLAIMER
//
//	BITart and Gerd Knops make no warranties, representations or commitments
//	with regard to the contents of this software. BITart and Gerd Knops
//	specifically disclaim any and all warranties, whether express, implied or
//	statutory, including, but not limited to, any warranty of merchantability
//	or fitness for a particular purpose, and non-infringement. Under no
//	circumstances will BITart or Gerd Knops be liable for loss of data,
//	special, incidental or consequential damages out of the use of this
//	software, even if those damages were foreseeable, or BITart or Gerd Knops
//	was informed of their potential.
//
//*****************************************************************************

function scriptInclude(filename)
{
	script=document.createElement('script');
	script.src=filename;
	script.type='text/javascript';
	document.getElementsByTagName('head')[0].appendChild(script);
}

//scriptInclude('DP_Debug.js');
scriptInclude('osy/javascript/BAFunc.js');
scriptInclude('osy/javascript/BAWindow.js');
scriptInclude('osy/javascript/BADock.js');


//**************************************************************************EOF
