
//**以下为左侧咨询面板**//
var Xpos = 0;
var Ypos = 0;
var Ygravity = 0.9;
var scrollPos = 0;
var oldScrollPos = 0;

var askstr="<div id=floater border='0'   style='z-index:9999;POSITION: absolute;HEIGHT: 0px;left: 15px;top: 50px;'><img src='/images/askpannel.gif' width='70' height='230' border='0' usemap='#MapAsk'> "
askstr+="<map name='MapAsk' id='MapAsk'>"
askstr+="<area shape='circle' coords='59,13,7' href='javascript:closePanel()' title='关闭咨询面板'>"
askstr+="<area shape='rect' coords='9,28,61,74' href='"+Sys_TQUrl+"' target='_blank'>"
askstr+="<area shape='rect' coords='9,79,62,125' href='tencent://message/?uin="+Sys_QQNum+"&Site="+Sys_WebAddress+"&Menu=yes'>"
askstr+="<area shape='rect' coords='9,128,62,175' href='http://tel.hoocall.cn:88/call.php?sid=63&did=107' target='_blank'>"
askstr+="<area shape='rect' coords='9,179,62,227' href='/service/appointment.asp'>"
askstr+="</map>"
askstr+="</div>"

document.write(askstr);

/*
document.write("<div id=floater border='0' style='POSITION: absolute;HEIGHT: 0px;	left: 3px;top: 3px;'> ")
document.write(" <img src=/images/qqpanel.gif  border=0 usemap='#Map'>")
document.write("  <map name='Map'><area shape='circle' coords='88,19,8' href='javascript:closePanel()' title='关闭咨询面板'> ")
document.write("<area shape='rect' coords='13,51,94,74' href='http://www.hr120.com/qq/index.htm' target='_blank'> ")
document.write("<area shape='rect' coords='13,110,94,134' href='http://www.hr120.com/qq/index.htm' target='_blank'> ")
document.write("    <area shape='rect' coords='11,82,95,101' href='http://www.hr120.com/qq/index.htm' target='_blank'> ")
document.write("    <area shape='rect' coords='10,138,94,161' href='http://www.hr120.com/qq/index.htm' target='_blank'> ")
document.write("    <area shape='rect' coords='10,166,95,191' href='http://www.hr120.com/qq/index.htm' target='_blank'> ")
document.write("<area shape='rect' coords='10,224,97,253' href='http://www.hr120.com/freecall.htm' target='_blank'> ")
document.write("</map> ")
document.write("</div>")

*/
function FloatMenu() { 
docWidth =-15; // update document width
docHeight = document.body.clientHeight; // update document height
oldScrollPos = scrollPos;
scrollPos = document.body.scrollTop; // update scrollbar position
//if(scrollPos > 600) scrollPos = 580;

Xpos = docWidth; 
Yboundary = scrollPos + 290;

if (floater.offsetTop < Yboundary - 10) // Object is behind boundary
Ypos += 3;

if (floater.offsetTop > Yboundary + 10) // Object is past boundary
Ypos -= 3;

Ypos *= Ygravity; // Slow object down

floater.style.pixelLeft = Xpos + 30;
floater.style.pixelTop += Ypos; // Make object bounce
}

window.setInterval("FloatMenu()", 20); 



function closePanel()
{	
	document.getElementById("floater").style.visibility="hidden"

}


//**以下为左侧咨询面板**//