// Denmark-specific scripts to be available on all pages (script included in all framwork files)
// ---------------------------------------------------------------------------------------------

// Jeg er ved at få lavet en ny bestillingside, og for at vi kan få lavet en cross-domæne funktionerne er denne kode nødvendig.
document.domain = "canaldigital.dk"; 

function addJavascript(jsname,pos) {
var th = document.getElementsByTagName(pos)[0];
var s = document.createElement('script');
s.setAttribute('type','text/javascript');
s.setAttribute('src',jsname);
th.appendChild(s);
} 

//Use the following for include stuff. If client has no javascript none of these will be included, but that should be ok.
addJavascript('/Scripts/Country/NO/jquery-1.3.2.min.js','head');

function CountrySpecificJS()
{
}