// JavaScript Document
window.onload = function(){initFloatTips();}
document.writeln("<div id=\"floatTips\" style=\"position:absolute; width:40px; z-index:1; left:85%; top: 350px;\">");
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:\/\/wpa.qq.com\/msgrd?V=1&Uin=814198205&Site=好怡服装&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" 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=651630154&Site=好怡服装&Menu=yes><img border=\"0\" src=\"images\/tm_boy.gif\" 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-38760945<br \/>020-82306945<br \/>13828466884<br \/>(杨小姐)<br \/><\/span>邮箱：<br \/><span class=\"en10\">yhr66880@126.com<\/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 = 330/*这是默认高度,越大越往下*/; 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";
		}
}



