	//////////////////////////////////////////////////////////////////
	//
	//	FUNCTIONS FOR POPUP
	//
	/////////////////////////////////////////////////////////////////


	function OpenPopUp(url)
	{

		window.open("popup.aspx?CALL=" + url, null, "toolbar=no,width=500,height=350,resizable=no,scrollbars=yes,location=no,menubar=no,status=no,top=50,left=50");
	}


	function OpenMovie(url)
	{

		window.open("movie.aspx?CALL=" + url, null, "toolbar=no,width=320,height=255,resizable=no,scrollbars=yes,location=no,menubar=no,status=no,top=50,left=50");
	}
	


	//////////////////////////////////////////////////////////////////
	//
	//	FUNCTIONS FOR TEXT
	//
	/////////////////////////////////////////////////////////////////
	

	function GetObj(name)
	{
  		if (document.getElementById)
     			return window.document.getElementById(name);
  
		if (document.all)
  			return window.document.all[name];
  		
		if (document.layers)
  			return window.document.layers[name];
  		
		return null;
	}


	function GetText()
	{
		oText = GetObj("Text");

	}
	
			
	
	function OnCatch(iPix)
	{
		_iPix = iPix;
				
		OnMove();
	}
	
	function OnMove()
	{

		if(_iPix != 0)
		{
			var iTop = parseInt(oText.style.top);

			//top
			if(_iPix > 0 && iTop + _iPix > 10) return;

			//bottom
			if(_iPix < 0 && iTop + oText.offsetHeight < 440) return;
			
			oText.style.top = (iTop + _iPix) + "px";
			window.setTimeout("OnMove();", 200);
		}
	}
	
	function OnLeave()
	{
		_iPix = 0;
	}
