javaBrs = /\n/gi;
//["1","La Casa de tus Sueños","SUMILLA TEST 01","final01.flv","","450","254","0"]);
function showVideos(){
	var html="";
	for(var i=0;i<videos.length;i++){
		html+="\n<table width=550 cellpadding=0 cellspacing=0 border=0 style=\"table-layout:fixed;margin-left:30px;margin-bottom:15px;\">\n";
		html+="<col width=450><col width=25>\n"				
		html+="<tr>\n";
		html+="<td class=\"textogeneral\" style=\"border-bottom:solid 1px dotted;\" height=20>\n";
		html+=" <div class=titulo>&nbsp;&nbsp;•&nbsp;&nbsp;"
		html+=" <a title=\"Pulse aquí para ver el vídeo.\" id=\"video_"+i+"\" href=\"/control/control_video.asp?flv=" + escape(videos[i][3]) + "&w="+videos[i][5].toString()+"&h="+videos[i][6].toString()+ "\" onclick=\"return hs.htmlExpand(this,{contentId:'iframeFLV',objectType:'iframe',width:'"+(parseInt(videos[i][5],10)+30)+"',height:'"+(parseInt(videos[i][6],10)+61)+"',align:'center',allowWidthReduction:1,preserveContent: false})\" class=\"highslide\">\n";
		html+=  videos[i][1]+"\n</a>\n"
		html+="</div>\n";
		javaBrs
		html+=" <div class=sumilla>"+videos[i][2].toString().replace(javaBrs,"<br>")+"</div>\n";
		html+="</td>\n";
		html+="<td align=center valign=top>\n";
		html+="<a title=\"Pulse aquí para ver el vídeo.\" id=\"videoi_"+i+"\" href=\"/control/control_video.asp?flv=" + escape(videos[i][3]) + "&w="+videos[i][5].toString()+"&h="+videos[i][6].toString()+ "\" onclick=\"return hs.htmlExpand(this,{contentId:'iframeFLV',objectType:'iframe',width:'"+(parseInt(videos[i][5],10)+30)+"',height:'"+(parseInt(videos[i][6],10)+61)+"',align:'center',allowWidthReduction:1,preserveContent: false})\" class=\"highslide\">\n";
		html+="<img style=\"margin-top:5px;\" src=\"/images/iconos/camara.gif\" border=0>";
		html+="</a>";
		html+="</td>\n";
		html+="</tr>\n"
		html+="</table>\n";
	}
	document.write(html);html=null;
}