<!--
//滚动鼠标调整图片大小
function bbimg(o){
//	var zoom=parseInt(o.style.zoom, 10)||100;zoom+=event.wheelDelta/12;if (zoom>0) o.style.zoom=zoom+'%';
	//return false;
}
//-->

/*常数定义 
self.onError=null;    
currentX = currentY = 0;    
whichIt = null;    
lastScrollX = 0; //最后离左边距离的负值
lastScrollY =0;  //最后离顶部的高度的负值
  
//----------------------start fun秒执行一次   
function heartBeat(id1,id2) {    
diffY = document.body.scrollTop;
diffX = document.body.scrollLeft; 

if(diffY != lastScrollY) {    
percent = .1 * (diffY - lastScrollY);    
if(percent > 0) percent = Math.ceil(percent);    
else percent = Math.floor(percent);    
id1.style.pixelTop += percent;
id2.style.pixelTop += percent;   
lastScrollY = lastScrollY + percent;    
}    

if(diffX != lastScrollX) {    
percent = .1 * (diffX - lastScrollX);    
if(percent > 0) percent = Math.ceil(percent);    
else percent = Math.floor(percent);    
id1.style.pixelTop += percent;
id2.style.pixelTop += percent;      
lastScrollX = lastScrollX + percent;    
}    
}    
//-----------------------end fun
scr=screen.width
left_1=(scr>800)?4:134
right_1=(scr>800)?893:590

//左侧图片
document.write("<DIV id=f1 style='left: "+left_1+"px; top: 150px; POSITION: absolute;'><a href='main_iptel.asp'><img src=imagex/IsPs.gif border=0 width=105 height=310></a><br><a href='#' onClick=f1.style.visibility='hidden';f2.style.visibility='hidden';><img src=imagex/closesa.gif border=0></a></div>")

//右侧图片
document.write("<DIV id=f2 style='left: "+right_1+"px; top: 150px; POSITION: absolute;'><a href='main_network.asp'><img src=imagex/internets.gif border=0 width=105 height=310></a><a href='#' onClick=f1.style.visibility='hidden';f2.style.visibility='hidden';><img src=imagex/closesa.gif border=0></a></div>")

action = window.setInterval("heartBeat(f1,f2)",50);
*/