function popUpDef(url,width,height,name,other) {
myPopup = window.open(url + "?width=" + width + "&height=" + height + "&navn=" + name + other, "PopupTest", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=yes,width=" + width + ",height=" + height + ",left = 100,top = 100")
}

function oN(obj) 
{
obj.style.background = "#E0DFE3"; 
}
 
function oF(obj) {
obj.style.background = "#ffffff"; }


function change(id, newClass) {
document.getElementById(id).className=newClass;
}