//--------------------------------------------------------------
//--------------------------------------------------------------
// Fichier Javascript necessaire au streaming 
//--------------------------------------------------------------
//--------------------------------------------------------------


function showthumb(divid,thumb) {
	document.getElementById(divid).style.display = 'block';
	document.getElementById(divid).innerHTML='<img src="'+thumb+'" border=0 width=130 height=97><div style="color:#006baa;font-size:10px; text-align:center">Vidéo en streaming</div>';
}
function hidethumb(divid) {
	document.getElementById(divid).style.display = 'none';	
}



function watchvideo(vlink,vtitle,vthumb) 
{	
	open("http://www.series-fr.net/wp-content/themes/webby-blue-10/watch.php?title="+vtitle+"&link="+vlink+"&thumb="+vthumb,"watch", "toolbar=no,menubar=no,width=550,height=560,resizable=yes");
}
