﻿function MoveSnippet(sCon, nsCon)
{
var pageContact = document.getElementById(sCon);
var nyPageContact = document.getElementById(nsCon);

   if (pageContact && nyPageContact)
   {
     Tangora.DOM.MoveElement(sCon, nsCon);
     pageContact.style.display = "block";
   }

}


function redirectBasedOnLanguage(){

var language = (Tangora.ServerVariables.AcceptLanguage);
language = language.slice(0,2);

	switch(language){
		case 'da': window.location='/dk'; break;
		case 'en': window.location='/uk'; break;
		case 'fi': window.location='/fin'; break;
		case 'nb': window.location='/no'; break;
		case 'sv': window.location='/se'; break;
		default: window.location='/uk'; break;
	}

}
