function show_video(winnum,title,videourl,imgurl)
{
	var width = 520;
	var height = 390;

	im=window.open('','win'+winnum,'top=40,left=40,width='+width+',height='+height+',scrollbars=no,menu=no,status=yes,resizable=no');
	im.focus();
	im.document.open ("text/html");
	im.document.write ('<html><head><title>'+title+'</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#ffffff><object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="520" height="390"><param name="movie" value="/mediaplayer/player.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="file=/file/'+videourl+'&image=/'+imgurl+'" /><object type="application/x-shockwave-flash" data="/mediaplayer/player.swf" width="520" height="390"><param name="movie" value="/mediaplayer/player-viral.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="flashvars" value="file=/file/'+videourl+'&image=/'+imgurl+'" /><p><a href="http://get.adobe.com/flashplayer">Get Flash</a> to see this player.</p></object></object></body></html>');
	im.document.close ();
}

function popup(anchor, width, height) 
{
     height += 10;
     w = window.open(anchor,'1','top=40,left=40,width='+width+',height='+height+',title=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1');
     w.focus();
}