﻿// JavaScript Document
<!--

var meObj_03,mainObj_03,btnObj_03;

function theInitFun_03(id,_top,_type,_xlr)
{
	meObj_03=document.getElementById(id);
	btnObj_03=document.getElementById("obtn_" + id);
	mainObj_03=document.getElementById("smain_" + id);
	
	var bodyObj=document.body;
	var docObj=document.documentElement;
	meObj_03.style.top=_top?(_top+'px'):0;
	meObj_03.style.position='absolute';
	if(_type==1)
	{
		meObj_03.style.left=_xlr?(_xlr+'px'):0;
		btnObj_03.style.left="0px";
		btnObj_03.className="chat_obtn_1";
	}
	else
	{
		meObj_03.style.right=_xlr?(_xlr+'px'):0;
		btnObj_03.style.right="0px";
		btnObj_03.className="chat_obtn_0";
	}
	
	setInterval(function (){
							var thePercent=(Math.max(bodyObj.scrollTop,docObj.scrollTop)+_top-parseInt(meObj_03.style.top))*0.1;
							if(thePercent>0)
							{
								thePercent=Math.ceil(thePercent);
							}
							else
							{
								thePercent=Math.floor(thePercent);
							}
						  	meObj_03.style.top=parseInt(meObj_03.style.top)+thePercent+'px';
						  },10+parseInt(Math.random()*20));
}

function outerClose_03()
{
	if(mainObj_03)
	{
		mainObj_03.style.display="none";
		btnObj_03.style.display="";
	}
}

function outerOpen_03()
{
	if(mainObj_03)
	{
		btnObj_03.style.display="none";
		mainObj_03.style.display="";
	}
}

//-->
