// 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)
    {		
		timerId = window.setTimeout("window.location.href=window.location.href;",600000);		

    }
    else
    {
		if(!isNaN(parseInt(timerId))) {window.clearTimeout(timerId);}
    }
}




