function watchvideo(vlink,vtitle) 
{
	open("watch.php?title="+vtitle+"&link="+vlink,"watch", "toolbar=no,menubar=no,width=600,height=500,resizable=no");
}

function showthumb(divid,thumb)
{
	document.getElementById(divid).style.display = 'block';
	document.getElementById(divid).innerHTML='<img src="'+thumb+'" border=0 width=260 height=200>';
}

function hidethumb(divid)
{
	document.getElementById(divid).style.display = 'none';
}

