﻿/*****************************************
  JS-kod för aktuell sida
/*****************************************/


function ShowContainer(ID) 
{

    hideDocumentElement('Sesam600')
    hideDocumentElement('Sesam900')
    hideDocumentElement('Sesam1400')
    hideDocumentElement('Sesam1800')
    hideDocumentElement('Sesam2600')
    hideDocumentElement('Alla')

    showDocumentElement(ID)

}

function HighlightRow(ID)
{    
    var el = document.getElementById(ID);
    el.style.backgroundColor='#b6c0cc';
    
    //alert(el.style.bgColor); //displays #cccccc
    //alert(el.id); //displays sesam xxxx    
    //alert(el.style.bgcolor);
}

function ClearRowHighLight(ID){

    var el = document.getElementById(ID);
    el.style.backgroundColor='#f7f7f7';
    
}