﻿<!--

function openwin(url, namn, width, height) {
winLeft = (screen.width-width)/2;
winTop = (screen.height-(height+110))/2;
window.open(url ,namn,"toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=" + width + ",height=" + height + ",top=" + winTop +", left=" + winLeft);
}

function setbgon(id,color) {
document.getElementById(id).style.background=color;
}
function setbgoff(id) {
document.getElementById(id).style.background="";
}

//-->