// -----------------------------------------------------------------------------------------------------------
// 

function blured() {
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
} if (document.all) {
document.onmousedown = blured;
}

// -----------------------------------------------------------------------------------------------------------
// SCRIPTET TILL POPUP RUTORNA

function PopWin(URLGO,Height,width) {
var winh = Height ;
var winw = width ;
var winl = (screen.width - winw) / 2;
var wint = (screen.height - winh) / 2;
winprops = 'height='+winh+',width='+winw+',top='+wint+',left='+winl+',toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,unselectable=on'
  remote = window.open("","",winprops);
  remote.location.href = URLGO;
}

// -----------------------------------------------------------------------------------------------------------
// ALERTRUTA TILL EJ INLOGGAD I MENYERNA

function notlogin() {
alert ("Något av följande har inträffat: \n" +
"_____________________________\n" +
"\n  - Du har ingen access till\n    denna nivå" +
"\n  - Du är ej inloggad" +
"\n  - Din session har gått ut och du har blivit utloggad" +
"\n  - Du är ej medlem" +
"\n  - Temporärt fel på sidan" +
"\n_____________________________\n" +
"\n Åtgärda eller försök igen !");
}

// -----------------------------------------------------------------------------------------------------------
// SCRIPT FÖR GÅ TILLBAKA VID EN POPUPRUTA

function goBackUrl(URLBACK){ window.opener.location = URLBACK ;}

// -----------------------------------------------------------------------------------------------------------
// 