﻿var sect = '3';
var link = window.location.href;
var qMid = getQueryVariable('mid');
var qMtime = getQueryVariable('mtime');
var directLink = 'http://tv.on.cc/index.html';

if (link.indexOf('/newlook') != -1) {
	window.location.href = link.replace('/newlook', '');
}
else {
	if (link.indexOf('broadcast.html') != -1) {
		sect = '2';
	}
	else if (link.indexOf('commentary.html') != -1) {
		sect = '41';
	}
	else if (link.indexOf('ent.html') != -1) {
		sect = '4';
	}
	else if (link.indexOf('life.html') != -1) {
		sect = '5';
	}
	else if (link.indexOf('news.html') != -1) {
		sect = '3';
	}

	directLink += '?s=' + sect;

	if (qMid != 'undefined' && qMtime != 'undefined') {
		directLink += '&i=' + qMid + '&d=' + qMtime;
	}

	window.location.href = directLink;
}

function getQueryVariable(variable) {
	var query = window.location.search.substring(1);
	var vars = query.split("&");
	for (var i=0;i<vars.length;i++) {
		var pair = vars[i].split("=");
		if (pair[0] == variable) {
			return pair[1];
		}
	} 
	return('undefined');
}
