var focus_width=300; 
var focus_height=230; 
var text_height=15; 
var swf_height = focus_height+text_height; 
var t=document.getElementById("pictable"); 
var rl=t.rows.length; 
var baseu=document.URL.replace(/(http.*\/)(.*)/, "$1");  
var pics="";
var links="";
var texts=""; 
var beginpos , endpos; 
var temp,innHtml ;      
for (var i=0; i<rl; i++)
{         
innHtml = t.rows[i].cells[0].innerHTML;    
endpos = innHtml.indexOf(">");  
beginpos = innHtml.indexOf("src=")+4;  		
temp = innHtml.substr(beginpos,(endpos-beginpos)); 		
pos = temp.indexOf("\""); 
if(pos<0)
pos = temp.indexOf("'"); 
while(pos>=0)
{
temp = temp.substr(0,pos)+temp.substr(pos+1,temp.length-pos-1); 
pos = temp.indexOf("\""); 
 if(pos<0) pos = temp.indexOf("'"); 
} 
if(temp.substr(0,1)=="/") 
temp = temp.substr(1,temp.length-1)
pics+=baseu+temp+"|"; 
links+=t.rows[i].cells[2].innerText+"|"; 
texts+=t.rows[i].cells[1].innerText+"|"; 
}
pics=pics.substr(0,pics.length-1);     
links=links.substr(0,links.length-1); 
texts=texts.substr(0,texts.length-1); 
var fv="pics="+pics+"&links="+links+"&texts="+texts+"&borderwidth="+focus_width+"&borderheight="+focus_height+"&textheight="+text_height; 
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+focus_width+'" height="'+swf_height+'">'); 
document.write('<param name="movie" value="http://www.shaoxing.com.cn/livetv/pixviewer.swf"> <param name="quality" value="high"><param name="allowScriptAccess" value="sameDomain"><param name="menu" value="false"><param name="bgcolor" value="#ffffff"><param name="wmode" value="opaque">'); 
document.write('<param name="flashvars" value="'+fv+'"></object>'); 