function watchvideo(vlink,vtitle) 
{
	open("watch.php?title="+vtitle+"&link="+vlink,"watch", "toolbar=no,menubar=no,width=500,height=540,resizable=no");
}

function showthumb(divid,thumb)
{
	document.getElementById(divid).style.display = 'block';
	document.getElementById(divid).innerHTML='<img src="'+thumb+'" border=0 width=130 height=97>';
}

function hidethumb(divid)
{
	document.getElementById(divid).style.display = 'none';
}
