
	function getObject(strID)
	{
		return document.getElementById(strID);
	}
		
	/*object*/ function ElementPosition()
	{
		this.left = 0;
		this.top = 0;
		this.width = 0;
		this.height = 0;
	}
	
	function getAbsolutePosition(objElement)
	{
		var objPos = new ElementPosition();
		
		objPos.width = objElement.offsetWidth;
		objPos.height = objElement.offsetHeight;
		
		while( objElement != null )
		{
			if( objElement.style.position != 'absolute' )
			{
				objPos.left += objElement.offsetLeft;
				objPos.top += objElement.offsetTop;
			}
			
			objElement = objElement.offsetParent;
		}
		
		return objPos;
	}
	
	function pushArray(arySource, vntPush)
	{
		var aryResult = new Array(arySource.length +1);
		
		for( i=0; i < arySource.length; i++ )
		{
			aryResult[i] = arySource[i];
		}
		
		aryResult[arySource.length] = vntPush;
		
		return aryResult;
	}	
