var dirX=1,dirY=1;
var xPos=0,yPos=0;
var winprops="height=400,width=400,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no,status=no";

var qiyehao;
var x=window.setInterval("moveIcon()",100);
function maindo(qiyehao1){
qiyehao=qiyehao1; 
 
 document.write('<img id="photo" src="http://www.800network.cn/images/newkefu.jpg" style="left:0px;top:0px;position:absolute;z-index:3;"'+
               'onmousemove="clearInterval(x)"onmouseout="mouseFun()"onclick="hideAndOpen()">');  
}

function moveIcon()
{
	xPos +=2*dirX;
	yPos +=2*dirY;
	document.getElementById("photo").style.top = yPos + document.body.scrollTop;
	document.getElementById("photo").style.left = xPos + document.body.scrollLeft;
	if(xPos<=0 || xPos+document.getElementById("photo").offsetWidth>=document.body.clientWidth)
	{
		dirX = -dirX;
	}
	if(yPos<=0 || yPos+document.getElementById("photo").offsetHeight>=document.body.clientHeight)
	{
		dirY = -dirY;
	}
}
function hideAndOpen()
{
	window.open('http://www.800network.cn/freecall/freeCall.jsp?corphone='+qiyehao,'800freecall',winprops);
}
function mouseFun()
{
	x=window.setInterval("moveIcon()",100);
}