

document.write('<div id="left" name="left" style="position:absolute; left:0px; top:600px;">');
document.write('<table>');
document.write('<td><a href="/contact.asp"><img alt="ÁªÏµÎÒÃÇ" src="/kefu.gif" border="0" </td>');
document.write('</table>');
document.write('</div>');


					
					function CheckUIElements()
					{
							var yMenu1Fromleft,yMenu1Fromright, yMenu1Toleft, yMenu1Toright, yOffset, timeoutNextCheck;
							var wndWidth = parseInt(document.body.clientWidth);

									yMenu1Fromleft   = parseInt (left.style.top, 10);
									
									yMenu1Toleft    = document.body.scrollTop + 200;
									yMenu1Toright    = document.body.scrollTop + 200;

							timeoutNextCheck = 500;

							if ( yMenu1Fromleft != yMenu1Toleft ) {
									yOffset = Math.ceil( Math.abs( yMenu1Toleft - yMenu1Fromleft ) / 20 );
									if ( yMenu1Toleft < yMenu1Fromleft )
											yOffset = -yOffset;

							left.style.top = parseInt (left.style.top, 10) + yOffset;
									timeoutNextCheck = 10;
							}
							
							
							if ( yMenu1Fromright != yMenu1Toright ) {
									yOffset = Math.ceil( Math.abs( yMenu1Toright - yMenu1Fromright ) / 20 );
									if ( yMenu1Toright < yMenu1Fromright )
											yOffset = -yOffset;

							
									timeoutNextCheck = 10;
							}

							setTimeout ("CheckUIElements()", timeoutNextCheck);
					}

					function MovePosition()
					{
							var wndWidth = parseInt(document.body.clientWidth);

									left.style.top = document.body.scrollTop + 200;
									left.style.visibility = "visible";
									CheckUIElements();
							return true;
					}

					
MovePosition();




