﻿// JavaScript Document
window.onload = function(){initFloatTips();}
document.writeln("<div id=\"floatTips\" style=\"position:absolute; width:40px; z-index:1; left:1%; top: 100px;\">");
document.writeln("              <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody>");
document.writeln("                <tr>");
document.writeln("                  <td><div align=\"center\">");
document.writeln("                      <table width=\"100%\"  border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("                        <tr>");
document.writeln("                          <td ><img src=\"images\/qqbox1.jpg\" width=\"121\" height=\"40\" style=\"vertical-align:bottom;\"><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                        <tr>");
document.writeln("                          <td background=\"images\/qqbox2.jpg\" ><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" >");
document.writeln("                              <tr>");
document.writeln("                                <td  valign=\"middle\" style=\"padding-left:10px;text-align:left;\">Business Consulting：<a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=736561276&Site=广州创志&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" alt=\"Business Consulting\"><\/a><\/td>");
document.writeln("                              <\/tr>");
document.writeln("                              <tr>");
document.writeln("                                <td valign=\"middle\" style=\"padding-left:10px;text-align:left;\">Business Consulting：<a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=1040157651&Site=广州创志&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" alt=\"Business Consulting\"><\/a><\/td>");
document.writeln("                              <\/tr>");
document.writeln("                              <tr>");
document.writeln("                                <td  valign=\"middle\" style=\"padding-left:10px;text-align:left;\">Business Consulting：<a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=948983753&Site=广州创志&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" alt=\"Business Consulting\"><\/a><\/td>");
document.writeln("                              <\/tr>");
document.writeln("							  <tr>");
document.writeln("							    <td valign=\"middle\" style=\"padding-left:10px;text-align:left;\">Business Consulting：<a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=790517679&Site=广州创志&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" alt=\"Business Consulting\"><\/a><\/td>");
document.writeln("						      <\/tr>");
document.writeln("							    <tr><td  style=\"line-height:17px; padding:8px 0 8px 6px; color:#044c99; padding-left:6px;text-align:left;\">TEL：<br \/>");
document.writeln("							      <span class=\"en\">020-87535801<br \/>87546436、87512401<br \/>87533299<\/span><\/td>");
document.writeln("							  <\/tr>");
document.writeln("							    <tr><td  style=\"line-height:17px; padding:8px 0 8px 6px; color:#044c99; padding-left:6px;text-align:left;\">Commendations, complaints telephone<br \/>");
document.writeln("							      <span class=\"en\">13710966689<\/span><\/td>");
document.writeln("							  <\/tr>");
document.writeln("                          <\/table><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                        <tr>");
document.writeln("                          <td><img src=\"images\/qqbox3.jpg\" ><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                      <\/table>");
document.writeln("                  <\/div><\/td><\/tbody>");
document.writeln("              <\/table>");
document.writeln("          <\/div>");


var tips; var theTop = 100/*这是默认高度,越大越往下*/; var old = theTop;
function initFloatTips() {
  tips = document.getElementById('floatTips');
  moveTips();
};
function moveTips() {
  var tt=50;
  if (window.innerHeight) {
    pos = window.pageYOffset
  }
  else if (document.documentElement && document.documentElement.scrollTop) {
    pos = document.documentElement.scrollTop
  }
  else if (document.body) {
    pos = document.body.scrollTop;
  }
  pos=pos-tips.offsetTop+theTop;
  pos=tips.offsetTop+pos/10;
  if (pos < theTop) pos = theTop;
  if (pos != old) {
    tips.style.top = pos+"px";
    tt=10;
  }
  old = pos;
  setTimeout(moveTips,tt);
}
function show_s(id)
{

	if (document.getElementById('u'+id).style.display == 'none')
		{
			document.getElementById('u'+id).style.display="block";
		}
		else
		{
			document.getElementById('u'+id).style.display="none";
		}
}
