if (window != top) top.location.href = self.location.href;
// ------ Sett navn på dette vinduet -------------------------------
self.name = "Stokke";
if (screen.width < 900) { window.open("def800x600.htm","Stokke"); };

function MM_reloadPage(init) {
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// ------ Skift dokument tittel -------------------------------------
// ------ Original:  David Sosnowski (support@codebelly.com) --------
// ------ Web Site:  http://www.codebelly.com -----------------------
	var message = new Array();
// Set your messages below -- follow the pattern.
// To add more messages, just add more elements to the array.
message[0] = " Triggerpunktbehandling hjemme ------------------------------";
message[1] = " En enkel vei til mer velvære -------------------------------------";
message[2] = " For personer med smerter i skuldre, armer, nakke og hode ";
message[3] = " Vil du vite mer? ----------------------------------------------------";
message[4] = " Kontakt: Stokke Industriutvikling -------------------------------";

// Set the number of repetitions (how many times the arrow cycle repeats with each message).
var reps = 2;
var speed = 200;  // Set the overall speed (larger number = slower action).

// DO NOT EDIT BELOW THIS LINE.
var p = message.length;
var T = "";
var C = 0;
var mC = 0;
var s = 0;
var sT = null;
if (reps < 1) reps = 1;
function doTheThing() {
T = message[mC];
A();
}
function A() {
s++;
if (s > 8) { s = 1;}
// you can fiddle with the patterns here...
if (s == 1) { document.title = ' '+T+' -----'; }
if (s == 2) { document.title = ' '+T+' -----'; }
if (s == 3) { document.title = ' '+T+' -----'; }
if (s == 4) { document.title = ' '+T+' -----'; }
if (s == 5) { document.title = ' '+T+' -----'; }
if (s == 6) { document.title = ' '+T+' -----'; }
if (s == 7) { document.title = ' '+T+' -----'; }
if (s == 8) { document.title = ' '+T+' -----'; }
if (C < (8 * reps)) {
sT = setTimeout("A()", speed);
C++;
}
else {
C = 0;
s = 0;
mC++;
if(mC > p - 1) mC = 0;
sT = null;
doTheThing();
   }
}
doTheThing();