// JavaScript Document
window.onload = function(){initFloatTips();}
document.writeln("<div id=\"floatTips\" style=\"position:absolute; width:40px; z-index:1; left:90%; 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.gif\" width=\"121\" height=\"40\" style=\"vertical-align:bottom;\"><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                        <tr>");
document.writeln("                          <td background=\"..\/images\/qqbox2.gif\" ><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" >");
document.writeln("                              <tr>");
document.writeln("                                <td height=\"31\" align=\"center\" valign=\"middle\"><a target=blank href=http:\/\/sighttp.qq.com\/cgi-bin\/check?sigkey=9f270ac12cff55df69cd4e24c2345647a3a9637fbe099e0894cdc31e2769b6eb><img border=\"0\" src=\"http://wpa.qq.com\/pa?p=1:514304545:1\" alt=\"在线咨询\"><\/a><\/td>");
document.writeln("                              <\/tr>");
document.writeln("							  <tr>");
document.writeln("							    <td height=\"28\" align=\"center\" valign=\"middle\"><a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=925499703&Site=七星客服&Menu=yes><img border=\"0\" src=\"http://wpa.qq.com\/pa?p=1:925499703:1\" alt=\"在线咨询\"><\/a><\/td>");
document.writeln("						      <\/tr>");
document.writeln("							  <tr>");
document.writeln("							    <td height=\"28\" align=\"center\" valign=\"middle\"><a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=790080662&Site=七星客服&Menu=yes><img border=\"0\" src=\"http://wpa.qq.com\/pa?p=1:790080662:1\" alt=\"在线咨询\"><\/a><\/td>");
document.writeln("						      <\/tr>");
document.writeln("							  <tr>");
document.writeln("							    <td height=\"28\" align=\"center\" valign=\"middle\"><a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=756315530&Site=七星客服&Menu=yes><img border=\"0\" src=\"http://wpa.qq.com\/pa?p=1:756315530:1\" alt=\"在线咨询\"><\/a><\/td>");
document.writeln("						      <\/tr>");
document.writeln("							  <tr>");
document.writeln("							    <td height=\"28\" align=\"center\" valign=\"middle\"><a target=blank href=http:\/\/wpa.qq.com\/msgrd?V=1&Uin=632667076&Site=七星客服&Menu=yes><img border=\"0\" src=\"http://wpa.qq.com\/pa?p=1:632667076:1\" alt=\"在线咨询\"><\/a><\/td>");
document.writeln("						      <\/tr>");
document.writeln("							    <tr><td height=\"74\" align=\"center\" style=\"line-height:17px;\">电话：<br \/>");
document.writeln("							      <span class=\"en10\">020-87500059<br \/>13662408370<\/span><\/td>");
document.writeln("							  <\/tr>");
document.writeln("                          <\/table><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                        <tr>");
document.writeln("                          <td><img src=\"..\/images\/qqbox3.gif\" width=\"121\" height=\"40\"><\/td>");
document.writeln("                        <\/tr>");
document.writeln("                      <\/table>");
document.writeln("                  <\/div><\/td><\/tbody>");
document.writeln("              <\/table>");
document.writeln("          <\/div>");


var tips; var theTop = 95/*这是默认高度,越大越往下*/; 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";
		}
}