// JavaScript Document
<!-- hide
squote = "'"; 
dquote = '"';
function openWin(wrd, def) {
    hgt = (wrd.length + def.length)/4+135;
    msgWindow =         open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=200,height='+hgt+'');
    msgWindow.document.write('<BODY BGCOLOR="#FFFF66" TEXT="#000000">');           
    msgWindow.document.write('<P><B>' +wrd+ '  </B> ' +def+ '</P>');
    msgWindow.document.write('<FORM><CENTER><INPUT TYPE="button" VALUE="St&auml;ng mig" onClick="window.close()"></CENTER></FORM>');}
// -->
