var backColorIn = '#99cccc';
var textColorIn = '#000000';
var backColorOut = '#669999';
var textColorOut = '#ffffff';
var clickColor = '#336666';

function colorIn(idObj,backColor,textColor)
{
    document.getElementById(idObj.id).style.background = backColor;
    document.getElementById(idObj.id).style.color = textColor;
}


function colorOut(idObj,backColor,textColor)
{
    document.getElementById(idObj.id).style.background = backColor;
    document.getElementById(idObj.id).style.color = textColor;
}


function clickLink(idObj,backColor,dest)
{
    document.getElementById(idObj.id).style.background = backColor;
	location.href = dest;
}


function PDFcolorIn(idObj,backColor,textColor)
{
    document.getElementById(idObj).style.background = backColor;
    document.getElementById(idObj).style.color = textColor;
}

function PDFcolorOut(idObj,backColor,textColor)
{
    document.getElementById(idObj).style.background = backColor;
    document.getElementById(idObj).style.color = textColor;
}

function PDFclickLink(idObj,backColorReturn,dest)
{
    document.getElementById(idObj).style.background = clickColor;
	location.href = dest;
    setTimeout('document.getElementById(idObj).style.background = backColorReturn',10);
    
}

