//**********************飘逸online原创[2007-11-13]*********************************
//功能：实现AJAX加载页面时的效果
//在页面中加入：<script language="javascript" src="loading.js" type="text/javascript"/>
//QICQ:173543221
//MSN:piaoyi_online@hotmail.com
//**************************************************************


//读取框
var t_id = setInterval(animate,10);
var pos=0;
var dir=2;
var len=0;
function animate()
{
var elem = document.getElementById('progress');
if(elem != null) {
if (pos==0) len += dir;
if (len>32 || pos>210) pos += dir;
if (pos>210) len -= dir;
if (pos>210 && len==0) pos=0;
elem.style.left = pos;
elem.style.width = len;
}
}
function remove_loading() {
this.clearInterval(t_id);
var targelem = document.getElementById('loader_container');
targelem.style.display='none';
targelem.style.visibility='hidden';
}