document.writeln("<div id=\"movedivid\" style=\"position: absolute; right: 3px; top: 145px; \">");
document.writeln("<table width=\"141\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("<tr>");
document.writeln("<td><div style=\"cursor:move; background-image:url(..\/images\/cmodel2\/zx_03.jpg); width:141px; height:54px;\" onmousedown=\"MoveDiv.Move(\'movedivid\', event)\"><\/td>");
document.writeln("<\/tr>");
document.writeln("<tr>");
document.writeln("<td><table width=\"141\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("<tr>");
document.writeln("<td background=\"..\/images\/cmodel2\/zx_13.jpg\" valign=\"top\"><img src=\"..\/images\/cmodel2\/zx_13.jpg\" width=\"11\" height=\"13\" \/><\/td>");
document.writeln("<td width=\"119\" height=\"150\" valign=\"top\" bgcolor=\"#FFFFFF\"><div style=\"width:119px; overflow:hidden;\">");
document.writeln("<table width=\"92%\" border=\"0\" align=\"center\" cellpadding=\"1\" cellspacing=\"1\">");

document.writeln("<tr><td><img src=' http://wpa.qq.com/pa?p=1:1391090236:4'  border='0' alt='QQ' /></td><td><a href='http://wpa.qq.com/msgrd?V=1&Uin=1391090236&Site=QQ咨询&Menu=yes' title='1391090236' target='_blank'>销售中心 清洗</a></td></tr><tr><td><img src=' http://wpa.qq.com/pa?p=1:228744790:4'  border='0' alt='QQ' /></td><td><a href='http://wpa.qq.com/msgrd?V=1&Uin=228744790&Site=QQ咨询&Menu=yes' title='228744790' target='_blank'>销售中心 机电</a></td></tr><tr><td><img src=' http://wpa.qq.com/pa?p=1:1403857523:4'  border='0' alt='QQ' /></td><td><a href='http://wpa.qq.com/msgrd?V=1&Uin=1403857523&Site=QQ咨询&Menu=yes' title='1403857523' target='_blank'>客服中心</a></td></tr><tr><td><img src='../images/cmodel2/zx_07.jpg' width='18' height='16' alt='MSN' /></td><td><a href='msnim:chat?contact=lindy1980@live.com' title='lindy1980@live.com'>销售中心</a></td></tr>");

document.writeln("<\/table></div>");
document.writeln("<\/td>");
document.writeln("<td background=\"..\/images\/cmodel2\/zx_15.jpg\" valign=\"top\"><img src=\"..\/images\/cmodel2\/zx_15.jpg\" width=\"11\" height=\"13\" \/><\/td>");
document.writeln("<\/tr>");
document.writeln("<\/table><\/td>");
document.writeln("<\/tr>");
document.writeln("<tr>");
document.writeln("<td background=\"..\/images\/cmodel2\/zx_23.jpg\" width=\"141\" height=\"33\" \/>&nbsp;<\/td>");
document.writeln("<\/tr>");
document.writeln("<\/table>");
document.writeln("<\/div>")
    var MoveDiv = function(){};
    
      MoveDiv.Move=function(id, e)
      {
      var o =document.getElementById(id);
      
      o.onselectstart = function() 
      {
        return(false);
      };
      
        e = e||window.event;
        var x=e.layerX||e.offsetX;
        var y=e.layerY||e.offsetY;
        
        document.onmousemove = function(e)
        {
          e=e||window.event;
		  
		    // 获得屏幕滚动位置
			if (window.innerHeight) {
				postop = window.pageYOffset;
			}
			else if (
				document.documentElement && document.documentElement.scrollTop) {
				postop = document.documentElement.scrollTop;
			}	
			else if (document.body) {
				postop = document.body.scrollTop;
			}
		  
          o.style.left = (e.clientX-x)+"px";
          o.style.top  = (e.clientY-y+postop)+"px";
        };
        
        document.onmouseup=function()
        {
          document.onmousemove=null;
        };
    }
	function showsubmenu(sid)
	{
		whichEl = eval("document.getElementById('submenu" + sid + "')");
		if (whichEl.style.display == "none")
		{
			eval("document.getElementById('submenu" + sid + "').style.display=\"\";");
		}
		else
		{
			eval("document.getElementById('submenu" + sid + "').style.display=\"none\";");
		}
	}

	// 随屏幕滚动
	var tips; 
	var theTop = document.getElementById('movedivid').offsetTop;
	var old = 300;
	var newpos = 0;
	var tops = 0;
	function initFloatTips() {
		tips = document.getElementById('movedivid');	
		moveTips();	
	}
	
	function moveTips() {
			var tt=10;
			if (window.innerHeight) {
				pos  = window.pageYOffset;
				pos1 = window.pageYOffset;
			}
			else if (
				document.documentElement && document.documentElement.scrollTop) {
				pos  = document.documentElement.scrollTop;
				pos1 = document.documentElement.scrollTop;
			}	
			else if (document.body) {
				pos  = document.body.scrollTop;
				pos1 = document.body.scrollTop;
			}
			tips = document.getElementById('movedivid');

			if (document.onmousemove == null) {
				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;
				} 
				newpos = pos1;
				old = pos;
			} else {
				theTop = tips.offsetTop - pos1;
			}
		setTimeout(moveTips,tt);
	}
	
	initFloatTips();