var onccCookies = new onccLib.Cookies();
var defaultSection = onccCookies['defaultPage'];
var iPhone = (navigator.userAgent.toLowerCase().indexOf('iphone') != -1);
if (typeof defaultSection == 'undefined' || defaultSection == 'news') {
	defaultSection = 'news/';
} else if (defaultSection == 'fin') {
	defaultSection = 'finance/';
} else if (defaultSection == 'sport') {
	defaultSection = 'sport/';
} else if (defaultSection == 'ent') {
	defaultSection = 'entertainment/';
} else if (defaultSection == 'life') {
	defaultSection = 'life/';
}
if (parseInt(screen.width,10) < 640 && parseInt(screen.height,10) < 480 && iPhone == false && (BrowserDetect.OS == "an unknown OS" || BrowserDetect.browser == "Opera" || (navigator.userAgent.toString().indexOf('Windows CE') != -1))) {
		window.location = 'http://wap.on.cc';
} else {
	if (window.location.href.indexOf('http://on.cc') != -1 || window.location.href.indexOf('/orimain/') != -1) {
		window.location = 'http://home.on.cc/';
	} else {
		window.location = 'http://home.on.cc/'+defaultSection;
	}
}

