﻿// account nr
_uacct = "UA-1234483-2";

// window width (user-defined parameter)
var WindowWidth = 0;
if( typeof( window.innerWidth ) == 'number' ) {
	//Non-IE
	WindowWidth = window.innerWidth;
} else if( document.documentElement && ( document.documentElement.clientWidth) ) {
	//IE 6+ in 'standards compliant mode'
	WindowWidth = document.documentElement.clientWidth;
} else if( document.body && ( document.body.clientWidth) ) {
	//IE 4 compatible
	WindowWidth = document.body.clientWidth;
}
__utmSetVar(Math.round(WindowWidth/100)*100);

// track kvasir.no as search engine
_uOsr[_uOsr.length] = "kvasir";
_uOkw[_uOkw.length] = "searchExpr";
_uOsr[_uOsr.length] = "kvasir.no"; /* firmasøk */
_uOkw[_uOkw.length] = "content";
// track abcsok.no as search engine
_uOsr[_uOsr.length] = "abcsok";
_uOkw[_uOkw.length] = "q";

urchinTracker();