function searchSomeContent()
{
	var keyContent="";
	if(document.getElementById("txtSearch").value != "")
	{
			keyContent = document.getElementById("txtSearch").value;
			window.open("http://www.google.co.jp/search?hl=zh-CN&source=hp&q="+keyContent);
			document.getElementById("txtSearch").value="";
	}
	else
	{
		alert("してください検索キーワードを入力!");	
	}
	
}

var vpindex = 0;
function GotoVideoPage(dir)
{
	lis = $('#vlst').children();
	if(lis.length == 0)
		return;
	if((vpindex+dir)*5>=lis.length || (vpindex+dir)<0)
		return;
	vpindex = vpindex+dir;
	staridx = vpindex*5 ;
	for(i=0; i<lis.length; i++)
	{
		lis[i].style.display='none';
	}
	for(i=0; i<5&&(staridx+i)<lis.length; i++)
	{
		lis[staridx+i].style.display='';
	}
}
