﻿function showdiv(div1,div2,tdDiv1, tdDiv2, link1, link2){

    var seediv=document.getElementById(div1); 
    var noSeediv=document.getElementById(div2); 
    var tdDiv1 = document.getElementById(tdDiv1); 
    var tdDiv2 = document.getElementById(tdDiv2); 
    var link1 = document.getElementById(link1); 
    var link2 = document.getElementById(link2); 

    seediv.style.display="block"; 
    noSeediv.style.display="none";

    tdDiv1.style.backgroundColor = '#003066';

    if(tdDiv1.style.backgroundColor != '#003066')
    {
        tdDiv1.style.backgroundColor = '#003066';
    }
    link1.className = 'linkTabSelected';
    if(link1.style.color != '#fff')
    {
    link1.style.color = '#fff';
    }
    tdDiv2.style.backgroundColor = '#eaeaea';
    if(tdDiv2.style.backgroundColor != '#eaeaea')
    {
        tdDiv2.style.backgroundColor = '#eaeaea';
    }
    link2.className = 'linkTab';
    if(link2.style.color != '#003066')
    {
    link2.style.color = '#003066';
    }

} 
