var rightbar;
var coupletcode;
rightbar = window.screen.width-150+18;
coupletcode = "<DIV id=leftbar style='LEFT: 2px; POSITION: absolute; TOP: 170px; VISIBILITY: hidden;' width=130>32</div><DIV id=rightbar style='LEFT: " + rightbar + "px; POSITION: absolute; TOP: 170px; VISIBILITY: hidden' width=130></div>";
//add by boost testing.........
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//................
     self.onError=null;
     currentX = currentY = 0; 
     whichIt = null; 
     lastScrollX = 0; lastScrollY = 0;
     NS = (document.layers) ? 1 : 0;
     IE = (document.all) ? 1: 0;
     <!-- STALKER CODE -->
     function heartBeat() {

		 
         if(IE) { 
		 	if (document.documentElement && document.documentElement.scrollTop) {
				diffY = document.documentElement.scrollTop; diffX = document.documentElement.scrollLeft; }
			else 	 {
				diffY = document.body.scrollTop; diffX = document.body.scrollLeft; }}
     if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
         if(diffY != lastScrollY) {
     percent = .1 * (diffY - lastScrollY);
     if(percent > 0) percent = Math.ceil(percent);
     else percent = Math.floor(percent);
                     if(IE){ document.all.leftbar.style.pixelTop += percent;
					          document.all.rightbar.style.pixelTop += percent;
							  }
                     if(NS) {document.leftbar.top += percent;
					          document.rightbar.top += percent;
					 } 
     lastScrollY = lastScrollY + percent;
     }
         if(diffX != lastScrollX) {
             percent = .1 * (diffX - lastScrollX);
             if(percent > 0) percent = Math.ceil(percent);
             else percent = Math.floor(percent);
             if(IE) { document.all.leftbar.style.pixelLeft += percent;
			 document.all.rightbar.style.pixelLeft += percent;
			 }
			 if(NS) {document.leftbar.left += percent;
			 document.rightbar.left += percent;
			 }
			 lastScrollX = lastScrollX + percent;
         }    
     }
     <!-- /STALKER CODE -->
     <!-- DRAG DROP CODE   鼠标拖放事件-->
     function checkFocus(x,y) { 
     stalkerx = document.leftbar.pageX;
     stalkery = document.leftbar.pageY;
	 stalkerwidth = document.leftbar.clip.width;
     stalkerheight = document.leftbar.clip.height;
	// stalkerx_r = document.rightbar.pageX;
    // stalkery_r = document.rightbar.pageY;
   //  stalkerwidth_r = document.rightbar.clip.width;
   //  stalkerheight_r = document.rightbar.clip.height;
     if( (x > stalkerx && x < (stalkerx+stalkerwidth)) && (y > stalkery && y < (stalkery+stalkerheight))) return true;
     else return false;
     }
     function grabIt(e) {
         if(IE) {
             whichIt = event.srcElement;
             while (whichIt.id.indexOf("leftbar") == -1) {
                 whichIt = whichIt.parentElement;


                 if (whichIt == null) { return true; }
         }
             whichIt.style.pixelLeft = whichIt.offsetLeft;
         whichIt.style.pixelTop = whichIt.offsetTop;
             currentX = (event.clientX + document.body.scrollLeft);
             currentY = (event.clientY + document.body.scrollTop);     
         } else { 
     window.captureEvents(Event.MOUSEMOVE);
     if(checkFocus (e.pageX,e.pageY)) { 
     whichIt = document.leftbar;
     StalkerTouchedX = e.pageX-document.leftbar.pageX;
     StalkerTouchedY = e.pageY-document.leftbar.pageY;
     } 
         }
     return true;
     }
     function moveIt(e) {
         if (whichIt == null) { return false; }
         if(IE) {
         newX = (event.clientX + document.body.scrollLeft);
         newY = (event.clientY + document.body.scrollTop);
         distanceX = (newX - currentX); distanceY = (newY - currentY);
         currentX = newX; currentY = newY;
         whichIt.style.pixelLeft += distanceX;
         whichIt.style.pixelTop += distanceY;
             if(whichIt.style.pixelTop < document.body.scrollTop) whichIt.style.pixelTop = document.body.scrollTop;
             if(whichIt.style.pixelLeft < document.body.scrollLeft) whichIt.style.pixelLeft = document.body.scrollLeft;
             if(whichIt.style.pixelLeft > document.body.offsetWidth - document.body.scrollLeft - whichIt.style.pixelWidth - 20) whichIt.style.pixelLeft = document.body.offsetWidth - whichIt.style.pixelWidth - 20;
             if(whichIt.style.pixelTop > document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5) whichIt.style.pixelTop = document.body.offsetHeight + document.body.scrollTop - whichIt.style.pixelHeight - 5;
             event.returnValue = false;
         } else { 
             whichIt.moveTo(e.pageX-StalkerTouchedX,e.pageY-StalkerTouchedY);
     if(whichIt.left < 0+self.pageXOffset) whichIt.left = 0+self.pageXOffset;
     if(whichIt.top < 0+self.pageYOffset) whichIt.top = 0+self.pageYOffset;
     if( (whichIt.left + whichIt.clip.width) >= (window.innerWidth+self.pageXOffset-17)) whichIt.left = ((window.innerWidth+self.pageXOffset)-whichIt.clip.width)-17;
     if( (whichIt.top + whichIt.clip.height) >= (window.innerHeight+self.pageYOffset-17)) whichIt.top = ((window.innerHeight+self.pageYOffset)-whichIt.clip.height)-17;
     return false;
         }
     return false;
     }
     function dropIt() {
         whichIt = null;
     if(NS) window.releaseEvents (Event.MOUSEMOVE);
     return true;
     }
     <!-- DRAG DROP CODE 鼠标拖放事件-->
    // if(NS) {
     //    window.captureEvents(Event.MOUSEUP|Event.MOUSEDOWN);
     //    window.onmousedown = grabIt;
     //    window.onmousemove = moveIt;
     //    window.onmouseup = dropIt;
    // }
    // if(IE) {
    //     document.onmousedown = grabIt;
    //     document.onmousemove = moveIt;
    //     document.onmouseup = dropIt;
   //  }
  if(NS || IE) action = window.setInterval("heartBeat()",1);


//add by boost testing.........

if (window.screen.width>=1024)
{
document.write(coupletcode);
}
// add 20060414

// add 20060414
function InsertCouplet()
{
if (window.screen.width>=1024){	
document.all.leftbar.style.visibility = "visible";
document.all.rightbar.style.visibility = "visible"; 

//document.all.leftbar.innerHTML = "<table width='108' height='296' border='0' cellpadding='0' cellspacing='0' background='http://www.101568.com/event/20090504/right.jpg'><tr><td height='52' align=center></td></tr><span style='color: #FFF'><tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99710110001681' target='_blank' style='color:#FF0000; font-size:13px;'>世上只有妈妈好</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320430000802' target='_blank' style='color:#FF0000; font-size:13px;'>念亲恩</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320440000146' target='_blank' style='color:#FF0000; font-size:13px;'>烛光里的妈妈</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320430007264' target='_blank' style='color:#FF0000; font-size:13px;'>妈妈我爱你</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320120009152' target='_blank' style='color:#FF0000; font-size:13px;'>亲爱的妈妈</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99550120002631' target='_blank' style='color:#FF0000; font-size:13px;'>听妈妈的话</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99580120000693' target='_blank' style='color:#FF0000; font-size:13px;'>好妈妈</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320430005854' target='_blank' style='color:#FF0000; font-size:13px;'>妈妈的吻</a></td></tr>	<tr><td align='center'><a href='http://www.101568.com/customize-1.jsp?id=99320120000043' target='_blank' style='color:#FF0000; font-size:13px;'>祝福</a></td></tr>		</span><tr>  <td height='28' align=right valign='bottom'><a href='http://www.101568.com/event/20090504/motherx.htm'><div id='Layer1'></div></a>"+  
//  "<a href='http://www.101568.com/event/20090317a/' target='_blank' style='color:#FF6600; font-size:12px;'>..</a></td>"+
//"</tr></table>";
document.all.leftbar.innerHTML = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>                                                   "+
"<html xmlns='http://www.w3.org/1999/xhtml'>                                                                                                                                 "+
"<head>                                                                                                                                                                      "+
"<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />                                                                                                      "+
"<title>无标题文档</title>   </head>          <table width='2%' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='event/20100730/summer.jsp'><img src='event/20100730/mainimages/left.gif'   border='0' /></a></td><tr></table>"+
"</body></html>";
//document.all.rightbar.innerHTML = "<table width='2%' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='http://www.101568.com/event/20090303/'  target='_blank'><img src='http://www.101568.com/event/20090602/right.gif' width='108' height='300' border='0' alt=''></a></td><tr></table>";
document.all.rightbar.innerHTML = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>                                                   "+
"<html xmlns='http://www.w3.org/1999/xhtml'>                                                                                                                                 "+
"<head>                                                                                                                                                                      "+
"<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />                                                                                                      "+
"<title>无标题文档</title>   </head>          <table width='2%' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='event/20100730/summer.jsp'><img src='event/20100730/mainimages/right.gif'   border='0' /></a></td><tr></table>"+
"</body></html>";                                                                                                                                                                                                                     

                                                                                                                                             
                                                                                                                                                         

                                                                                                                                                                                                        


}	                                 
}                                  
	InsertCouplet();                 
	function leftBG_DoFSCommand(command,args){
		if ((command == "163")&&(args =="hidebar")){
			document.all.leftbar.style.visibility = "hidden";
			document.all.rightbar.style.visibility = "hidden";
		}                              
	}                                
	function rightBG_DoFSCommand(command,args){
		leftBG_DoFSCommand(command,args);
	}                                
	<!--                             
	if (document.all){               
		document.write("<Script language=\"JavaScript\" For=\"rightB\" Event=\"FSCommand(command,args)\">\n");
		document.write("	leftBG_DoFSCommand(command,args);\n");
		document.write("</Script>\n"); 
		document.write("<Script language=\"JavaScript\" For=\"leftB\" Event=\"FSCommand(command,args)\">\n");
		document.write("	rightBG_DoFSCommand(command,args);\n");
		document.write("</Script>\n"); 
	}                                
	//-->                            
/*                                 
document.all.rightbar.innerHTML = "<table border='0' cellpadding='0' cellspacing='0' width='108'><tr><td><img src='http://www.101568.com/event/20071011/event/20090612/father/images/spacer.gif' width='108' height='1' border='0' alt=''></td><td><img src='http://www.101568.com/event/20071011/event/20090612/father/images/spacer.gif' width='1' height='1' border='0' alt=''></td></tr><tr><td><img name='box_r1_c1' src='http://www.101568.com/event/20071011/event/20090612/father/images/box_r1_c1.jpg' width='108' height='89' border='0' alt=''></td><td><img src='http://www.101568.com/event/20071011/event/20090612/father/images/spacer.gif' width='1' height='89' border='0' alt=''></td></tr><tr><td valign='top' background='http://www.101568.com/event/20071011/event/20090612/father/images/box_r2_c1.jpg'><table width='98%' border='0' cellspacing='0' cellpadding='0'><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99731110000001' target='cus' style='color:#fff'>流行风向标</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99321110000004' target='cus' style='color:#fff'>曲曲醉心集</a></td></tr><tr><td height='24' align=center> <a href='http://www.101568.com/ringpackageinfo.jsp?id=99711110000001' target='cus' style='color:#fff'>强力主打</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99321110000005' target='cus' style='color:#fff'>白金歌星辑</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99731210000001' target='cus' style='color:#fff'>搞笑经典</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99551110000002' target='cus' style='color:#fff'>滚石月光宝盒</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99711110000002' target='cus'style='color:#fff'>岁月留声机</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99731110000002' target='cus' style='color:#fff'>动感新体验</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackageinfo.jsp?id=99321110000001' target='cus' style='color:#fff'>流行音乐疯</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/songinfo.jsp?mid=211134' target='cus' style='color:#fff'>爱情转移(热买版)</a></td></tr><tr><td height='24' align=center><a href='http://www.101568.com/ringpackagelist.jsp'  target='_blank'><img src=/event/20071011/event/20090612/father/images/box_r3_c1.jpg width=108 height=25 border=0></a></td></tr></table></td><td><img src='http://www.101568.com/event/20071011/event/20090612/father/images/spacer.gif' width='1' height='251' border='0' alt=''></td></tr></table>";
                                   
<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='100' height='300'><param name='movie' value='event_img/071214.swf' /><param name='quality' value='high' /><embed src='/event_img/070917.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='100' height='300'></embed></object>
                                   
document.all.rightbar.innerHTML =  "<div  style='z-index:-1'><embed  name='Movie1'  src='http://www.101568.com/event_img/071214.swf'  quality='high' width='100'  height='300'  wmode='transparent'  type='application/x-shockwave-flash'> </embed> </div>";
*/                                 
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   
                                   