// refresh main sport pages, excludes article page due to reading duration & video page

var timerId,bVidFlag;

if (JS_ARTICLE_ID == '' && JS_SUB_SECTION == '' && JS_SECTION != 'video' && JS_SECTION != 'slideshowajax' && 
	JS_SECTION != 'wwostv' && JS_SECTION != 'article' && JS_SUB_SECTIONID == '0' || JS_SUB_SECTIONID == '147549')
{
	setRefresh(true)
}

function setRefresh(bVidFlag)
{
    if(bVidFlag)
    {		
               if (window.location.href.indexOf("rf=true") > 0) 
		{
			timerId = window.setTimeout("window.location.href=window.location.href", 600000);
		}
		else 
		{
			if (window.location.href.indexOf("?") > 0) 
			{
				timerId = window.setTimeout("window.location.href=window.location.href + '&rf=true';", 600000);
			}
			else 
			{
				timerId = window.setTimeout("window.location.href=window.location.href + '?rf=true';", 600000);
			}
		}		
    }
    else
    {
		if(!isNaN(parseInt(timerId))) {window.clearTimeout(timerId);}
    }
}





