// Functions
<!--
function imageon(name){
	if (document.images && document[name]){
		var new_src = document[name].src.replace('off','on');
		if (document.images) document[name].src=new_src;
	}
}
function tackMail(){
	window.open('/annat/tack_pop.htm','tack','height=250,width=350,left=250,top=250,scrollbar=0,statusbar=0,menubar=0,titlebar=0');
}
function kartaGoteborg(){
	window.open('http://www.stadskartan.se/start/visaobjekt.asp?objektid=28257&lang=sve','Karta','height=450,width=750,left=150,top=150,scrollbars,resizable,statusbar=0,menubar=0,titlebar=0');
}
function kartaStockholm(){
	window.open('http://www.stadskartan.se/start/visaobjekt.asp?objektid=28258&lang=sve','Karta','height=500,width=790,left=150,top=150,scrollbars,resizable,statusbar=0,menubar=0,titlebar=0');
}
function printPage(printPage){
	window.open(printPage,'Utskrift','height=500,width=500,left=150,top=150,scrollbars,resizable,statusbar=0,menubar=0,titlebar=0');
}
function thisMovie(movieName) {
  // IE and Netscape refer to the movie object differently.
  // This function returns the appropriate syntax depending on the browser.
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  }	else {
    return document[movieName]
  }
}

// Checks if movie is completely loaded.
// Returns true if yes, false if no.
function movieIsLoaded (theMovie) {
  if (typeof(theMovie) != "undefined") {
    return theMovie.PercentLoaded() == 100;
  } else {
    return false;
  }
}


function playmovie() {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).Play();
  }
}

function stopmovie() {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).StopPlay();
  }
}


function go(theFrame) {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).GotoFrame(theFrame);
  }
}

function golabel(theLabel) {
  if (movieIsLoaded(thisMovie(movieName))) {
    thisMovie(movieName).TGotoLabel("_level0/",theLabel);
  }
}

-->