﻿var tdpressed1=null;
var hasdocs = 0;
function Category (button)
{   
    button.className='Notselected';
    if ((tdpressed1!=null) && (tdpressed1!=button))
        {
            tdpressed1.className = '';
        }
    //frmContent.location = "Frames/" + button.id + ".aspx";
    tdpressed1=button;
//    frmContent.location = "frames/" + button.id + ".aspx";  
}

function CategoryMouseout(td)
{
    if(td!=tdpressed1)
        {td.className='';}
}

function CategoryMouseover(tdover)
{
    if(tdover!=tdpressed1)
        {tdover.className='selected';}
}

function cleardocs()
{
//if (hasdocs == 0)
//hasdocs = 0;
}

function showdocs(product)
{
//alert(document.getElementById('divdocs').innerHTML);
document.getElementById('divdocs').innerHTML = 'product';
hasdocs = 1;
}
