function OpenWindow(url,info,opt)
{
	setTimeout("_OpenWindow('"+url+"','"+info+"','"+opt+"')",500);
}
function _OpenWindow(url,info,opt)
{
	var w = window.open(url,info,opt);
	try
	{
		if( w == null )
			alert("要能正常收看,請允許快顯視窗");
		else
			w.focus()
	}
	catch(e)
	{
	};
}
function openVODPlayer(id)
{
	id = parseInt(id);
	OpenWindow('http://hichannel.hinet.net/player/vod-f1.jsp?id='+id+'&r='+(new Date()).getTime(),'hichannelPlayer','width=675,height=530,scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no');
	return false;
}
function openLivePlayer(id)
{
	id = parseInt(id);
	OpenWindow('http://hichannel.hinet.net/player/live-f1.jsp?id='+id+'&r='+(new Date()).getTime(),'hichannelPlayer','width=675,height=530,scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no');
	return false;
}

